|
|
@@ -7,7 +7,7 @@ import java.util.Date;
|
|
|
* (User)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2025-02-26 09:03:22
|
|
|
+ * @since 2025-03-21 16:37:40
|
|
|
*/
|
|
|
public class User implements AftUser{
|
|
|
private static final long serialVersionUID = 896145436195951740L;
|
|
|
@@ -209,6 +209,14 @@ public class User implements AftUser{
|
|
|
* 客户性质其他说明
|
|
|
*/
|
|
|
private String natureOther;
|
|
|
+ /**
|
|
|
+ * 企业性质 0=其他,1=国企,2=央企,3=私企,4=合资企业(含港澳台),5=外资控股
|
|
|
+ */
|
|
|
+ private Integer enterpriseNature;
|
|
|
+ /**
|
|
|
+ * 上市 0=否,1=是
|
|
|
+ */
|
|
|
+ private Integer listedNature;
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
@@ -611,5 +619,21 @@ public class User implements AftUser{
|
|
|
this.natureOther = natureOther;
|
|
|
}
|
|
|
|
|
|
+ public Integer getEnterpriseNature() {
|
|
|
+ return enterpriseNature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnterpriseNature(Integer enterpriseNature) {
|
|
|
+ this.enterpriseNature = enterpriseNature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getListedNature() {
|
|
|
+ return listedNature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setListedNature(Integer listedNature) {
|
|
|
+ this.listedNature = listedNature;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|