feat(奖金管理): 新增奖金池管理功能及相关配置模块
新增奖金池管理功能,包括奖金池列表、新增、修改、删除和详情查看 添加岗位系数配置组件,支持岗位系数的增删改查 实现奖金分配明细组件,支持员工选择、系数配置和金额计算 添加奖金分配和岗位系数配置的API接口 在WmsBonusPoolBo中添加日期格式化注解
This commit is contained in:
@@ -8,6 +8,7 @@ import javax.validation.constraints.*;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
/**
|
||||
* 奖金池业务对象 wms_bonus_pool
|
||||
@@ -33,6 +34,8 @@ public class WmsBonusPoolBo extends BaseEntity {
|
||||
/**
|
||||
* 奖金时间/统计时间
|
||||
*/
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
private Date bonusTime;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user