|
|
@@ -1,8 +1,10 @@
|
|
|
package com.goafanti.expenseAccount.bo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.goafanti.common.utils.excel.Excel;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
public class OutExpenseAccountDetailsList {
|
|
|
|
|
|
@@ -83,6 +85,45 @@ public class OutExpenseAccountDetailsList {
|
|
|
private String createTimeStr;
|
|
|
private Integer targetType;
|
|
|
|
|
|
+ private Date releaseStart;
|
|
|
+ private Date releaseEnd;
|
|
|
+ private Double duration ;
|
|
|
+ private Integer days;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
|
|
|
+ public Date getReleaseStart() {
|
|
|
+ return releaseStart;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReleaseStart(Date releaseStart) {
|
|
|
+ this.releaseStart = releaseStart;
|
|
|
+ }
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
|
|
|
+ public Date getReleaseEnd() {
|
|
|
+ return releaseEnd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReleaseEnd(Date releaseEnd) {
|
|
|
+ this.releaseEnd = releaseEnd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getDuration() {
|
|
|
+ return duration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDuration(Double duration) {
|
|
|
+ this.duration = duration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDays() {
|
|
|
+ return days;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDays(Integer days) {
|
|
|
+ this.days = days;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getSonId() {
|
|
|
return sonId;
|
|
|
}
|