|
|
@@ -1,6 +1,7 @@
|
|
|
package com.goafanti.demand.bo;
|
|
|
|
|
|
-import java.util.Date;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
|
|
|
import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
|
|
|
@@ -12,8 +13,9 @@ public class DemandFollowListBo extends DemandFollow{
|
|
|
private String employerName;
|
|
|
private String employerContactsMobile;
|
|
|
private String employerContactsMailbox;
|
|
|
- private Date createTime;
|
|
|
- private String adminName;
|
|
|
+ private String adminName;
|
|
|
+ private List<?> demandFollowDetail;
|
|
|
+
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
@@ -39,9 +41,7 @@ public class DemandFollowListBo extends DemandFollow{
|
|
|
public void setEmployerContactsMailbox(String employerContactsMailbox) {
|
|
|
this.employerContactsMailbox = employerContactsMailbox;
|
|
|
}
|
|
|
- public Date getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
+
|
|
|
public String getLastFollowTimeFormattedDate() {
|
|
|
if (getLastFollowTime() == null) {
|
|
|
return null;
|
|
|
@@ -49,20 +49,18 @@ public class DemandFollowListBo extends DemandFollow{
|
|
|
return DateFormatUtils.format(getLastFollowTime(), AFTConstants.YYYYMMDD);
|
|
|
}
|
|
|
}
|
|
|
- public String getCreateTimeFormattedDate() {
|
|
|
- if (this.createTime == null) {
|
|
|
- return null;
|
|
|
- } else {
|
|
|
- return DateFormatUtils.format(getCreateTime(), AFTConstants.YYYYMMDDHHMMSS);
|
|
|
- }
|
|
|
- }
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
+
|
|
|
+
|
|
|
public String getAdminName() {
|
|
|
return adminName;
|
|
|
}
|
|
|
public void setAdminName(String adminName) {
|
|
|
this.adminName = adminName;
|
|
|
}
|
|
|
+ public List<?> getDemandFollowDetail() {
|
|
|
+ return demandFollowDetail;
|
|
|
+ }
|
|
|
+ public void setDemandFollowDetail(List<?> demandFollowDetail) {
|
|
|
+ this.demandFollowDetail = demandFollowDetail;
|
|
|
+ }
|
|
|
}
|