|
|
@@ -32,6 +32,8 @@ public class InvitationRecordSimpleInfo {
|
|
|
|
|
|
public static final String DATE_FIELD = "in_date";
|
|
|
|
|
|
+ public static final String ACTIVE_FIELD = "in_active";
|
|
|
+
|
|
|
public static final String VENDNAME_FIELD = "in_vendname";
|
|
|
|
|
|
public static final String VENDUSERNAME_FIELD = "in_vendusername";
|
|
|
@@ -62,6 +64,12 @@ public class InvitationRecordSimpleInfo {
|
|
|
@Column(name = DATE_FIELD)
|
|
|
private Date date;
|
|
|
|
|
|
+ /**
|
|
|
+ * 是否已激活
|
|
|
+ */
|
|
|
+ @Column(name = ACTIVE_FIELD)
|
|
|
+ private Short active;
|
|
|
+
|
|
|
/**
|
|
|
* 邀请的客户名称
|
|
|
*/
|
|
|
@@ -118,6 +126,14 @@ public class InvitationRecordSimpleInfo {
|
|
|
this.date = date;
|
|
|
}
|
|
|
|
|
|
+ public Short getActive() {
|
|
|
+ return active;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActive(Short active) {
|
|
|
+ this.active = active;
|
|
|
+ }
|
|
|
+
|
|
|
public String getVendname() {
|
|
|
return vendname;
|
|
|
}
|
|
|
@@ -153,8 +169,8 @@ public class InvitationRecordSimpleInfo {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "InvitationRecordSimpleInfo [id=" + id + ", enuu=" + enuu + ", useruu=" + useruu + ", date=" + date
|
|
|
- + ", vendname=" + vendname + ", vendusername=" + vendusername + ", vendusertel=" + vendusertel
|
|
|
- + ", venduseremail=" + venduseremail + "]";
|
|
|
+ + ", active=" + active + ", vendname=" + vendname + ", vendusername=" + vendusername + ", vendusertel="
|
|
|
+ + vendusertel + ", venduseremail=" + venduseremail + "]";
|
|
|
}
|
|
|
|
|
|
/**
|