weaver-hrm-salary/src/com/engine/salary/entity/salaryacct/param/SalaryAcctEmployeeAddParam....

27 lines
682 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.engine.salary.entity.salaryacct.param;
import com.engine.salary.util.valid.DataCheck;
import lombok.Data;
import java.util.Collection;
/**
* 薪资核算人员-从环比上月减少添加
* <p>Copyright: Copyright (c) 2023</p>
* <p>Company: 泛微软件</p>
*
* @author qiantao
* @version 1.0
**/
@Data
public class SalaryAcctEmployeeAddParam {
//薪资核算记录id
@DataCheck(require = true,message = "参数错误薪资核算记录ID不能为空")
private Long salaryAcctRecordId;
//薪资核算记录人员id
@DataCheck(require = true,message = "参数错误,薪资核算人员不能为空")
private Collection<Long> ids;
}