|
@@ -5,6 +5,7 @@ import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -38,6 +39,13 @@ public class WmScorePackageExcelModel implements Serializable {
|
|
@ExcelProperty("积分包名称")
|
|
@ExcelProperty("积分包名称")
|
|
private String scorePackageName;
|
|
private String scorePackageName;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 积分包值
|
|
|
|
+ */
|
|
|
|
+ @ColumnWidth(20)
|
|
|
|
+ @ExcelProperty("积分包值")
|
|
|
|
+ private String score;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 所属月份
|
|
* 所属月份
|
|
*/
|
|
*/
|
|
@@ -108,6 +116,13 @@ public class WmScorePackageExcelModel implements Serializable {
|
|
@ExcelProperty("到账时间")
|
|
@ExcelProperty("到账时间")
|
|
private LocalDateTime notifyDate;
|
|
private LocalDateTime notifyDate;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 到账金额
|
|
|
|
+ */
|
|
|
|
+ @ColumnWidth(20)
|
|
|
|
+ @ExcelProperty("到账金额")
|
|
|
|
+ private BigDecimal settleAmount;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 关联积分包名称
|
|
* 关联积分包名称
|
|
*/
|
|
*/
|