31 lines
627 B
Java
31 lines
627 B
Java
package com.engine.salary.entity.siaccount.param;
|
|
|
|
import com.engine.salary.util.valid.DataCheck;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @Author: sy
|
|
* @Description: 福利核算-线下对比导入参数
|
|
* @Date: 2022/9/27
|
|
**/
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class ExcelInsuranceImportParam {
|
|
/**
|
|
* 上传文件id
|
|
*/
|
|
@DataCheck(require = true,message = "imageId为空")
|
|
String imageId;
|
|
|
|
/**
|
|
* 账单月份
|
|
*/
|
|
private String billMonth;
|
|
private String paymentOrganization;
|
|
}
|