|
@@ -0,0 +1,53 @@
|
|
|
+package com.fdage.followheartplay.entity;
|
|
|
+
|
|
|
+import javax.persistence.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 场景实体
|
|
|
+ */
|
|
|
+@Entity
|
|
|
+@Table(name="requirement",schema = "follow_heart_play")
|
|
|
+public class RequirementEntity extends BaseEntity{
|
|
|
+ @Id
|
|
|
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
|
+ @Column(name = "id")
|
|
|
+ private Long id;
|
|
|
+ @Column(name = "industry_name")
|
|
|
+ private String industryName;
|
|
|
+ @Column(name = "requirement_desc")
|
|
|
+ private String requirementDesc;
|
|
|
+ @Column(name = "phone")
|
|
|
+ private String phone;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIndustryName() {
|
|
|
+ return industryName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndustryName(String industryName) {
|
|
|
+ this.industryName = industryName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRequirementDesc() {
|
|
|
+ return requirementDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRequirementDesc(String requirementDesc) {
|
|
|
+ this.requirementDesc = requirementDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhone() {
|
|
|
+ return phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhone(String phone) {
|
|
|
+ this.phone = phone;
|
|
|
+ }
|
|
|
+}
|