|
|
@@ -4,6 +4,8 @@ import java.util.Date;
|
|
|
|
|
|
import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
|
|
|
public class AchievementInterestListBo {
|
|
|
@@ -14,13 +16,13 @@ public class AchievementInterestListBo {
|
|
|
private Date createTime;
|
|
|
|
|
|
private String name;
|
|
|
-
|
|
|
- private Integer serialNumber;
|
|
|
+
|
|
|
+ private Integer serialNumber;
|
|
|
|
|
|
private Integer deletedSign;
|
|
|
|
|
|
private Integer auditStatus;
|
|
|
-
|
|
|
+
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
@@ -61,6 +63,7 @@ public class AchievementInterestListBo {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getDeletedSign() {
|
|
|
return deletedSign;
|
|
|
}
|
|
|
@@ -68,7 +71,8 @@ public class AchievementInterestListBo {
|
|
|
public void setDeletedSign(Integer deletedSign) {
|
|
|
this.deletedSign = deletedSign;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getAuditStatus() {
|
|
|
return auditStatus;
|
|
|
}
|