2022-04-06 20:01:00 +08:00
|
|
|
|
package com.engine.salary.entity.salaryacct.param;
|
|
|
|
|
|
|
|
|
|
|
|
import com.engine.salary.common.BaseQueryParam;
|
|
|
|
|
|
import com.engine.salary.common.LocalDateRange;
|
2023-09-25 15:38:14 +08:00
|
|
|
|
import com.engine.salary.enums.common.FilterEnum;
|
2022-04-06 20:01:00 +08:00
|
|
|
|
import com.engine.salary.enums.salarysob.SalaryEmployeeStatusEnum;
|
|
|
|
|
|
import com.engine.salary.util.valid.DataCheck;
|
2022-04-12 19:25:19 +08:00
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
|
import lombok.Builder;
|
2022-04-06 20:01:00 +08:00
|
|
|
|
import lombok.Data;
|
2022-04-12 19:25:19 +08:00
|
|
|
|
import lombok.NoArgsConstructor;
|
2022-04-06 20:01:00 +08:00
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
2023-07-07 15:32:12 +08:00
|
|
|
|
import java.util.List;
|
2022-04-06 20:01:00 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 薪资核算结果查询参数
|
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author qiantao
|
|
|
|
|
|
* @version 1.0
|
|
|
|
|
|
**/
|
|
|
|
|
|
@Data
|
2022-04-12 19:25:19 +08:00
|
|
|
|
@Builder
|
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
|
@AllArgsConstructor
|
2022-04-06 20:01:00 +08:00
|
|
|
|
public class SalaryAcctResultQueryParam extends BaseQueryParam {
|
|
|
|
|
|
|
|
|
|
|
|
//薪资核算记录id
|
|
|
|
|
|
@DataCheck(require = true,message = "参数错误,薪资核算记录ID不能为空")
|
|
|
|
|
|
private Long salaryAcctRecordId;
|
|
|
|
|
|
|
|
|
|
|
|
//人员姓名
|
|
|
|
|
|
private String employeeName;
|
|
|
|
|
|
|
|
|
|
|
|
//个税扣缴义务人
|
|
|
|
|
|
private Long taxAgentId;
|
|
|
|
|
|
|
2022-08-31 15:06:49 +08:00
|
|
|
|
//分部
|
|
|
|
|
|
private Collection<Long> subcompanyIds;
|
|
|
|
|
|
|
2022-04-06 20:01:00 +08:00
|
|
|
|
//部门
|
|
|
|
|
|
private Collection<Long> departmentIds;
|
|
|
|
|
|
|
|
|
|
|
|
//岗位
|
|
|
|
|
|
private Collection<Long> positionIds;
|
|
|
|
|
|
|
|
|
|
|
|
//状态
|
|
|
|
|
|
private SalaryEmployeeStatusEnum status;
|
2023-07-07 15:32:12 +08:00
|
|
|
|
//状态(多选)
|
|
|
|
|
|
private List<String> statuses;
|
2022-04-06 20:01:00 +08:00
|
|
|
|
|
|
|
|
|
|
//离职日期
|
|
|
|
|
|
private LocalDateRange dismissDate;
|
|
|
|
|
|
|
|
|
|
|
|
//是否合并计税
|
|
|
|
|
|
private String consolidatedTaxation;
|
|
|
|
|
|
|
|
|
|
|
|
//列表主键id
|
|
|
|
|
|
private Collection<Long> ids;
|
2023-05-31 11:49:40 +08:00
|
|
|
|
|
|
|
|
|
|
private String workcode;
|
2023-07-12 15:20:02 +08:00
|
|
|
|
|
|
|
|
|
|
//薪资项目id
|
|
|
|
|
|
private Collection<Long> salaryItemIds;
|
2023-09-25 15:38:14 +08:00
|
|
|
|
|
|
|
|
|
|
//其他条件
|
|
|
|
|
|
private Collection<OtherCondition> otherConditions;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
|
public class OtherCondition{
|
|
|
|
|
|
private Long itemIds;
|
|
|
|
|
|
private FilterEnum filter;
|
|
|
|
|
|
private String params;
|
|
|
|
|
|
}
|
2022-04-06 20:01:00 +08:00
|
|
|
|
}
|