feat(bonus-pool): 添加奖金池开始时间和结束时间字段支持
- 在WmsBonusPool实体类中新增bonusStartTime和bonusEndTime属性 - 在WmsBonusPoolBo业务对象中添加对应的开始结束时间字段及日期格式注解 - 更新MyBatis映射文件中的结果集映射配置 - 在查询条件中加入开始时间和结束时间的筛选逻辑 - 在WmsBonusPoolVo视图对象中添加Excel导出和JSON格式化支持
This commit is contained in:
@@ -35,6 +35,14 @@ public class WmsBonusPool extends BaseEntity {
|
||||
* 奖金时间/统计时间
|
||||
*/
|
||||
private Date bonusTime;
|
||||
/**
|
||||
* 开始时间
|
||||
*/
|
||||
private Date bonusStartTime;
|
||||
/**
|
||||
* 结束时间
|
||||
*/
|
||||
private Date bonusEndTime;
|
||||
/**
|
||||
* 奖金池总金额
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user