|
|
@@ -9,7 +9,7 @@ import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
|
|
|
public class DemandListBo {
|
|
|
-
|
|
|
+
|
|
|
private String id;
|
|
|
|
|
|
/**
|
|
|
@@ -31,35 +31,34 @@ public class DemandListBo {
|
|
|
* 关键词
|
|
|
*/
|
|
|
private String keyword;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 发布时间
|
|
|
*/
|
|
|
private Date releaseDate;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 需求类型
|
|
|
*/
|
|
|
private Integer demandType;
|
|
|
|
|
|
private Date validityPeriod;
|
|
|
-
|
|
|
+
|
|
|
private Integer status;
|
|
|
-
|
|
|
|
|
|
/**
|
|
|
* 是否发布(0-未发布,1-发布)
|
|
|
*/
|
|
|
private Integer releaseStatus;
|
|
|
-
|
|
|
- private String employerId;
|
|
|
-
|
|
|
+
|
|
|
+ private String employerId;
|
|
|
+
|
|
|
/**
|
|
|
* 审核状态
|
|
|
*/
|
|
|
- private Integer auditStatus;
|
|
|
-
|
|
|
- @JsonFormat(shape = Shape.STRING)
|
|
|
+ private Integer auditStatus;
|
|
|
+
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getAuditStatus() {
|
|
|
return auditStatus;
|
|
|
}
|
|
|
@@ -115,7 +114,7 @@ public class DemandListBo {
|
|
|
public void setKeyword(String keyword) {
|
|
|
this.keyword = keyword;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getDemandType() {
|
|
|
return demandType;
|
|
|
@@ -132,7 +131,7 @@ public class DemandListBo {
|
|
|
public void setValidityPeriod(Date validityPeriod) {
|
|
|
this.validityPeriod = validityPeriod;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
@@ -158,7 +157,7 @@ public class DemandListBo {
|
|
|
public void setReleaseDate(Date releaseDate) {
|
|
|
this.releaseDate = releaseDate;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public String getValidityPeriodFormattedDate() {
|
|
|
if (this.validityPeriod == null) {
|
|
|
return null;
|
|
|
@@ -183,6 +182,4 @@ public class DemandListBo {
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
}
|