|
|
@@ -177,6 +177,18 @@ public class Enterprise implements Serializable {
|
|
|
@Column(name = "en_validcode")
|
|
|
private Short enValidCode;
|
|
|
|
|
|
+ /**
|
|
|
+ * 行业
|
|
|
+ */
|
|
|
+ @Column(name = "en_profession")
|
|
|
+ private String profession;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 经营范围
|
|
|
+ */
|
|
|
+ @Column(name = "en_tags")
|
|
|
+ private String tags;
|
|
|
+
|
|
|
|
|
|
@Transient
|
|
|
private Integer receiptStatus;
|
|
|
@@ -452,6 +464,22 @@ public class Enterprise implements Serializable {
|
|
|
this.enBussinessCodeImage = enBussinessCodeImage;
|
|
|
}
|
|
|
|
|
|
+ public String getProfession() {
|
|
|
+ return profession;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProfession(String profession) {
|
|
|
+ this.profession = profession;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTags() {
|
|
|
+ return tags;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTags(String tags) {
|
|
|
+ this.tags = tags;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* saas用户
|
|
|
*
|