weaver-hrm-salary/src/com/engine/salary/report/entity/param/SubTableDataQueryParam.java

67 lines
1.3 KiB
Java
Raw Normal View History

2023-04-07 14:38:38 +08:00
package com.engine.salary.report.entity.param;
2023-05-09 14:28:46 +08:00
import com.engine.salary.common.BaseQueryParam;
2023-04-07 14:38:38 +08:00
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
2023-04-23 10:14:32 +08:00
2023-04-07 14:38:38 +08:00
@Data
@NoArgsConstructor
@AllArgsConstructor
//"报表数据查询入参")
public class SubTableDataQueryParam extends BaseQueryParam {
2023-04-24 14:09:27 +08:00
//报表id")
2023-04-07 14:38:38 +08:00
private Long id;
2023-04-24 14:09:27 +08:00
//个税扣缴义务人配置")
2023-04-07 14:38:38 +08:00
private List<Long> payOrg;
2023-04-24 14:09:27 +08:00
//缴纳组织配置")
2023-04-07 14:38:38 +08:00
private List<Long> payAgency;
2023-04-24 14:09:27 +08:00
// 分部配置")
2023-04-07 14:38:38 +08:00
private List<Long> subCompany;
2023-04-24 14:09:27 +08:00
// 部门配置")
2023-04-07 14:38:38 +08:00
private List<Long> depart;
2023-04-24 14:09:27 +08:00
//职级配置")
2023-04-07 14:38:38 +08:00
private List<Long> grade;
2023-04-24 14:09:27 +08:00
//岗位配置")
2023-04-07 14:38:38 +08:00
private List<Long> position;
2023-04-24 14:09:27 +08:00
//人员状态配置")
2023-04-07 14:38:38 +08:00
private List<String> status;
2023-04-24 14:09:27 +08:00
//人员类型配置")
2023-04-07 14:38:38 +08:00
private Integer employeeType;
2023-04-24 14:09:27 +08:00
//开始月")
2023-04-07 14:38:38 +08:00
private String startMonth;
2023-04-24 14:09:27 +08:00
//人员")
2023-04-07 14:38:38 +08:00
private List<Long> employee;
2023-04-24 14:09:27 +08:00
// 缴纳类型")
2023-04-07 14:38:38 +08:00
private List<Integer> paymentType;
2023-04-24 14:09:27 +08:00
//终止月")
2023-04-07 14:38:38 +08:00
private String endMonth;
2023-04-24 14:09:27 +08:00
//统计单位")
2023-04-07 14:38:38 +08:00
private Integer unitType;
2023-04-24 14:09:27 +08:00
//统计维度")
2023-04-07 14:38:38 +08:00
private String dimension;
2023-04-24 14:09:27 +08:00
//统计维度名称")
2023-04-07 14:38:38 +08:00
private String dimensionName;
2023-04-24 14:09:27 +08:00
//是否导出人员维度数据")
2023-04-07 14:38:38 +08:00
private Boolean empExport;
}