|
|
@@ -1,52 +1,10 @@
|
|
|
package com.goafanti.portal.bo;
|
|
|
|
|
|
-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 {
|
|
|
- private String id;
|
|
|
+public class AchievementInterestListBo extends InterestListBo{
|
|
|
|
|
|
private String achievementId;
|
|
|
|
|
|
- private Date createTime;
|
|
|
-
|
|
|
- private String name;
|
|
|
-
|
|
|
- private Integer serialNumber;
|
|
|
-
|
|
|
- private Integer deletedSign;
|
|
|
-
|
|
|
- private Integer auditStatus;
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getSerialNumber() {
|
|
|
- return serialNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSerialNumber(Integer serialNumber) {
|
|
|
- this.serialNumber = serialNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
public String getAchievementId() {
|
|
|
return achievementId;
|
|
|
}
|
|
|
@@ -55,42 +13,5 @@ public class AchievementInterestListBo {
|
|
|
this.achievementId = achievementId;
|
|
|
}
|
|
|
|
|
|
- public Date getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- @JsonFormat(shape = Shape.STRING)
|
|
|
- public Integer getDeletedSign() {
|
|
|
- return deletedSign;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeletedSign(Integer deletedSign) {
|
|
|
- this.deletedSign = deletedSign;
|
|
|
- }
|
|
|
-
|
|
|
- @JsonFormat(shape = Shape.STRING)
|
|
|
- public Integer getAuditStatus() {
|
|
|
- return auditStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAuditStatus(Integer auditStatus) {
|
|
|
- this.auditStatus = auditStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreateTimeFormattedDate() {
|
|
|
- if (this.createTime == null) {
|
|
|
- return null;
|
|
|
- } else {
|
|
|
- return DateFormatUtils.format(this.getCreateTime(), AFTConstants.YYYYMMDDHHMMSS);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTimeFormattedDate(String createTimeFormattedDate) {
|
|
|
-
|
|
|
- }
|
|
|
|
|
|
}
|