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

40 lines
1.0 KiB
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 io.swagger.annotations.ApiModel;
//import io.swagger.annotations.ApiModelProperty;
//import lombok.AllArgsConstructor;
//import lombok.Data;
//import lombok.NoArgsConstructor;
//import lombok.experimental.Accessors;
//
//import javax.validation.constraints.NotNull;
//import java.util.Collection;
//
///**
// * @description: 薪资核算结果的校验参数
// * @author: xiajun
// * @modified By: xiajun
// * @date: Created in 12/16/21 6:45 PM
// * @version:v1.0
// */
//@Data
//@Accessors(chain = true)
//@NoArgsConstructor
//@AllArgsConstructor
//@ApiModel("薪资核算结果的校验参数")
//public class SalaryAcctCheckParam {
//
// /**
// * 不是employeeId而是salaryAcctEmpId
// */
// //核算人员的id")
// private Collection<Long> ids;
//
// /**
// * 参数错误薪资核算记录ID不能为空
// */
// @NotNull(message = "LABEL:99845")
// //薪资核算记录id")
// private Long salaryAcctRecordId;
//}