|
@@ -4,7 +4,6 @@ import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Id;
|
|
|
import javax.persistence.Table;
|
|
|
-import javax.validation.constraints.NotNull;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
@@ -52,6 +51,12 @@ public class Enterprise implements Serializable {
|
|
|
@Column(name = "en_businesscode")
|
|
|
private String businesscode;
|
|
|
|
|
|
+
|
|
|
+ * 企业管理员UU
|
|
|
+ */
|
|
|
+ @Column(name = "en_adminuu")
|
|
|
+ private Long adminUU;
|
|
|
+
|
|
|
public Long getUu() {
|
|
|
return uu;
|
|
|
}
|
|
@@ -92,6 +97,14 @@ public class Enterprise implements Serializable {
|
|
|
this.businesscode = businesscode;
|
|
|
}
|
|
|
|
|
|
+ public Long getAdminUU() {
|
|
|
+ return adminUU;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAdminUU(Long adminUU) {
|
|
|
+ this.adminUU = adminUU;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "Enterprise{" +
|
|
@@ -100,6 +113,7 @@ public class Enterprise implements Serializable {
|
|
|
", enTel='" + enTel + '\'' +
|
|
|
", enAddress='" + enAddress + '\'' +
|
|
|
", businesscode='" + businesscode + '\'' +
|
|
|
+ ", adminUU=" + adminUU +
|
|
|
'}';
|
|
|
}
|
|
|
}
|