导入模板up
This commit is contained in:
parent
d08a26392f
commit
da1e5d9fee
@ -41,12 +41,14 @@ public class MpsImportLoanCustomerLedgerImportVo implements Serializable {
|
||||
* 单位
|
||||
*/
|
||||
@ExcelProperty(value = "单位")
|
||||
@NotBlank(message = "单位不能为空")
|
||||
private String unit;
|
||||
|
||||
/**
|
||||
* 客户号
|
||||
*/
|
||||
@ExcelProperty(value = "客户号")
|
||||
@NotBlank(message = "客户号不能为空")
|
||||
private String customerId;
|
||||
|
||||
/**
|
||||
|
||||
@ -8,6 +8,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
||||
import cn.idev.excel.annotation.ExcelProperty;
|
||||
import jakarta.validation.constraints.NotBlank;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import org.dromara.common.excel.annotation.ExcelDictFormat;
|
||||
import org.dromara.common.excel.convert.ExcelDictConvert;
|
||||
import lombok.Data;
|
||||
@ -45,30 +46,35 @@ public class MpsImportNormalMerchantImportVo implements Serializable {
|
||||
* 机构名称
|
||||
*/
|
||||
@ExcelProperty(value = "机构名称")
|
||||
@NotNull(message = "机构名称")
|
||||
private String institutionName;
|
||||
|
||||
/**
|
||||
* 支行名称
|
||||
*/
|
||||
@ExcelProperty(value = "支行名称")
|
||||
@NotNull(message = "支行名称")
|
||||
private String branchName;
|
||||
|
||||
/**
|
||||
* 机构编号
|
||||
*/
|
||||
@ExcelProperty(value = "机构编号")
|
||||
@NotNull(message = "机构编号")
|
||||
private String institutionCode;
|
||||
|
||||
/**
|
||||
* 商户编号
|
||||
*/
|
||||
@ExcelProperty(value = "商户编号")
|
||||
@NotNull(message = "商户编号")
|
||||
private String merchantId;
|
||||
|
||||
/**
|
||||
* 商户全称
|
||||
*/
|
||||
@ExcelProperty(value = "商户全称")
|
||||
@NotNull(message = "商户全称")
|
||||
private String merchantFullName;
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user