|
|
@@ -130,6 +130,12 @@ public class InvitationRecord implements Serializable {
|
|
|
@Transient
|
|
|
private Long productNum;
|
|
|
|
|
|
+ /**
|
|
|
+ * 如果企业注册,展示注册时间
|
|
|
+ */
|
|
|
+ @Transient
|
|
|
+ private Date registerDate;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -273,4 +279,12 @@ public class InvitationRecord implements Serializable {
|
|
|
public void setProductNum(Long productNum) {
|
|
|
this.productNum = productNum;
|
|
|
}
|
|
|
+
|
|
|
+ public Date getRegisterDate() {
|
|
|
+ return registerDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRegisterDate(Date registerDate) {
|
|
|
+ this.registerDate = registerDate;
|
|
|
+ }
|
|
|
}
|