|
|
@@ -48,6 +48,8 @@ public class DeputyOrderSimpleInfo {
|
|
|
|
|
|
public static final String ENUU_FIELD = "deo_enuu";
|
|
|
|
|
|
+ public static final String ENTRYSTATUS_FIELD = "deo_entrystatus";
|
|
|
+
|
|
|
/**
|
|
|
* 主键id
|
|
|
*/
|
|
|
@@ -124,6 +126,12 @@ public class DeputyOrderSimpleInfo {
|
|
|
@Column(name = ENUU_FIELD)
|
|
|
private Long enuu;
|
|
|
|
|
|
+ /**
|
|
|
+ * 录入状态
|
|
|
+ */
|
|
|
+ @Column(name = ENTRYSTATUS_FIELD)
|
|
|
+ private String entrystatus;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -220,13 +228,21 @@ public class DeputyOrderSimpleInfo {
|
|
|
this.enuu = enuu;
|
|
|
}
|
|
|
|
|
|
+ public String getEntrystatus() {
|
|
|
+ return entrystatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEntrystatus(String entrystatus) {
|
|
|
+ this.entrystatus = entrystatus;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "DeputyOrderSimpleInfo [id=" + id + ", code=" + code + ", statuscode=" + statuscode + ", madealcode="
|
|
|
+ madealcode + ", tervendor=" + tervendor + ", tervenduu=" + tervenduu + ", venduser=" + venduser
|
|
|
- + ", venduseruu=" + venduseruu + ", companyname="
|
|
|
- + companyname + ", legalrepresent=" + legalrepresent + ", customer=" + customer + ", enuu=" + enuu
|
|
|
- + "]";
|
|
|
+ + ", venduseruu=" + venduseruu + ", companyname=" + companyname + ", legalrepresent=" + legalrepresent
|
|
|
+ + ", customer=" + customer + ", enuu=" + enuu + ", entrystatus=" + entrystatus + "]";
|
|
|
}
|
|
|
|
|
|
/**
|