修改模拟计价记录日期

This commit is contained in:
zhuangdashia 2025-09-22 22:44:35 +08:00
parent 59955e8621
commit e622a6af17
4 changed files with 4 additions and 4 deletions

View File

@ -420,7 +420,7 @@ public class MarketingPerformance extends TenantEntity {
/**
* 记录日期
*/
private Date recordDate;
private String recordDate;
/**
* 报表类型 d:日报 m:月报 q:季报 y:年报

View File

@ -494,7 +494,7 @@ public class MarketingPerformanceBo extends BaseEntity {
* 记录日期
*/
@NotNull(message = "记录日期不能为空", groups = { AddGroup.class, EditGroup.class })
private Date recordDate;
private String recordDate;
/**
* 报表类型 d:日报 m:月报 q:季报 y:年报

View File

@ -508,7 +508,7 @@ public class MarketingPerformanceImportVo implements Serializable {
* 记录日期
*/
@ExcelProperty(value = "记录日期")
private Date recordDate;
private String recordDate;
/**
* 报表类型 d:日报 m:月报 q:季报 y:年报

View File

@ -580,7 +580,7 @@ public class MarketingPerformanceVo implements Serializable {
* 记录日期
*/
@ExcelProperty(value = "记录日期", converter = ExcelDateConvert.class, index = 54)
private Date recordDate;
private String recordDate;
// /**
// * 报表类型 d:日报 m:月报 q:季报 y:年报