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;
|
|
|
|
|
|
import com.engine.salary.enums.salarysob.SalaryEmployeeStatusEnum;
|
|
|
|
|
|
import com.engine.salary.util.valid.DataCheck;
|
2022-04-12 19:25:19 +08:00
|
|
|
|
import lombok.*;
|
2022-04-06 20:01:00 +08:00
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 薪资核算人员列表查询条件
|
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author qiantao
|
|
|
|
|
|
* @version 1.0
|
|
|
|
|
|
**/
|
|
|
|
|
|
@Data
|
2022-04-12 19:25:19 +08:00
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
2022-04-06 20:01:00 +08:00
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
|
@AllArgsConstructor
|
2022-04-12 19:25:19 +08:00
|
|
|
|
@Builder
|
2022-04-06 20:01:00 +08:00
|
|
|
|
public class SalaryAcctEmployeeQueryParam 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;
|
|
|
|
|
|
|
2022-04-12 19:25:19 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 状态
|
|
|
|
|
|
* @see SalaryEmployeeStatusEnum
|
|
|
|
|
|
*/
|
2022-04-06 20:01:00 +08:00
|
|
|
|
private SalaryEmployeeStatusEnum status;
|
|
|
|
|
|
|
|
|
|
|
|
//离职日期")
|
|
|
|
|
|
private LocalDateRange dismissDate;
|
|
|
|
|
|
|
|
|
|
|
|
//薪资核算人员列表主键id")
|
|
|
|
|
|
private Collection<Long> ids;
|
|
|
|
|
|
}
|