50 lines
1.1 KiB
Java
50 lines
1.1 KiB
Java
|
|
package com.engine.salary.entity.salaryacct.param;
|
|||
|
|
|
|||
|
|
import com.engine.salary.common.BaseQueryParam;
|
|||
|
|
import com.engine.salary.common.LocalDateRange;
|
|||
|
|
import com.engine.salary.enums.salarysob.SalaryEmployeeStatusEnum;
|
|||
|
|
import com.engine.salary.util.valid.DataCheck;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
import java.util.Collection;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 薪资核算结果查询参数
|
|||
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|||
|
|
* <p>Company: 泛微软件</p>
|
|||
|
|
*
|
|||
|
|
* @author qiantao
|
|||
|
|
* @version 1.0
|
|||
|
|
**/
|
|||
|
|
@Data
|
|||
|
|
public class SalaryAcctResultQueryParam extends BaseQueryParam {
|
|||
|
|
|
|||
|
|
//薪资核算记录id
|
|||
|
|
@DataCheck(require = true,message = "参数错误,薪资核算记录ID不能为空")
|
|||
|
|
private Long salaryAcctRecordId;
|
|||
|
|
|
|||
|
|
//人员姓名
|
|||
|
|
private String employeeName;
|
|||
|
|
|
|||
|
|
//个税扣缴义务人
|
|||
|
|
private Long taxAgentId;
|
|||
|
|
|
|||
|
|
//部门
|
|||
|
|
private Collection<Long> departmentIds;
|
|||
|
|
|
|||
|
|
//岗位
|
|||
|
|
private Collection<Long> positionIds;
|
|||
|
|
|
|||
|
|
//状态
|
|||
|
|
private SalaryEmployeeStatusEnum status;
|
|||
|
|
|
|||
|
|
//离职日期
|
|||
|
|
private LocalDateRange dismissDate;
|
|||
|
|
|
|||
|
|
//是否合并计税
|
|||
|
|
private String consolidatedTaxation;
|
|||
|
|
|
|||
|
|
//列表主键id
|
|||
|
|
private Collection<Long> ids;
|
|||
|
|
}
|