|
@@ -1,12 +1,13 @@
|
|
|
package com.fs.his.domain;
|
|
package com.fs.his.domain;
|
|
|
|
|
|
|
|
-import java.util.Date;
|
|
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.fs.common.annotation.Excel;
|
|
import com.fs.common.annotation.Excel;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
-import com.fs.common.core.domain.BaseEntity;
|
|
|
|
|
-import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
+
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 通用积分消耗退还统计(不含看课领的积分)对象 fs_integral_count
|
|
* 通用积分消耗退还统计(不含看课领的积分)对象 fs_integral_count
|
|
@@ -21,9 +22,17 @@ public class FsIntegralCount{
|
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
/** $column.columnComment */
|
|
|
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
|
|
+ @Excel(name = "时间",dateFormat = "yyyy-MM-dd")
|
|
|
private Date consumptionDate;
|
|
private Date consumptionDate;
|
|
|
|
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
|
|
+ private String beginDate;
|
|
|
|
|
+
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
|
|
+ private String endDate;
|
|
|
|
|
+
|
|
|
/** 通用的积分消耗 */
|
|
/** 通用的积分消耗 */
|
|
|
@Excel(name = "通用的积分消耗")
|
|
@Excel(name = "通用的积分消耗")
|
|
|
private String integralConsume;
|
|
private String integralConsume;
|
|
@@ -35,5 +44,6 @@ public class FsIntegralCount{
|
|
|
@Excel(name = "积分类型",dictType="sys_integral_log_type")
|
|
@Excel(name = "积分类型",dictType="sys_integral_log_type")
|
|
|
private Integer logType;
|
|
private Integer logType;
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
+ @Excel(name = "时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
+ private LocalDateTime createTime;
|
|
|
}
|
|
}
|