2023-04-07 14:38:38 +08:00
|
|
|
package com.engine.salary.report.entity.dto;
|
|
|
|
|
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description: 薪酬统计报表自定义统计项目规则
|
|
|
|
|
* @Author: wangxiangzhong
|
|
|
|
|
* @Date: 2022/12/29 16:35
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
//"薪酬统计报表自定义统计项目规则")
|
|
|
|
|
public class SalaryStatisticsItemRuleDTO {
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//是否有合计列")
|
2023-04-07 14:38:38 +08:00
|
|
|
private Integer totalValue;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//是否有占比列")
|
2023-04-07 14:38:38 +08:00
|
|
|
private Integer ratioValue;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//是否有环比列")
|
2023-04-07 14:38:38 +08:00
|
|
|
private Integer m2mValue;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//合计环比上限")
|
2023-04-07 14:38:38 +08:00
|
|
|
private BigDecimal m2mUpperLimit;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//合计环比下限")
|
2023-04-07 14:38:38 +08:00
|
|
|
private BigDecimal m2mLowerLimit;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//是否有同比列")
|
2023-04-07 14:38:38 +08:00
|
|
|
private Integer y2yValue;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//合计同比上限")
|
2023-04-07 14:38:38 +08:00
|
|
|
private BigDecimal y2yUpperLimit;
|
|
|
|
|
|
2023-04-24 14:09:27 +08:00
|
|
|
//合计同比下限")
|
2023-04-07 14:38:38 +08:00
|
|
|
private BigDecimal y2yLowerLimit;
|
|
|
|
|
}
|