weaver-hrm-salary/src/com/engine/salary/entity/siaccount/param/InsuranceAcctDetailImportTe...

26 lines
552 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.siaccount.param;
import com.engine.salary.util.valid.DataCheck;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.util.Collection;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public class InsuranceAcctDetailImportTemplateParam {
/**
* 薪资项目id薪资项目包含了福利项
*/
@DataCheck(require = true,message = "福利核算项目name不能为空")
private Collection<String> welfareNames;
}