Commit 896b9225 authored by 刘斌's avatar 刘斌

fix: 修复转换错误

parent 49fc735d
......@@ -27,7 +27,7 @@ public class InterviewProfileParam {
/**
* 员工信息ID
*/
@NotNull(message = "员工信息ID不能为空", groups = { AddGroup.class, EditGroup.class })
// @NotNull(message = "员工信息ID不能为空", groups = { AddGroup.class, EditGroup.class })
private Long employeeId;
/**
......@@ -81,7 +81,7 @@ public class InterviewProfileParam {
/**
* 标杆企业
*/
@NotBlank(message = "标杆企业不能为空", groups = { AddGroup.class, EditGroup.class })
// @NotBlank(message = "标杆企业不能为空", groups = { AddGroup.class, EditGroup.class })
private String benchmarkEnterprise;
/**
......@@ -105,7 +105,7 @@ public class InterviewProfileParam {
/**
* 备注
*/
@NotBlank(message = "备注不能为空", groups = { AddGroup.class, EditGroup.class })
// @NotBlank(message = "备注不能为空", groups = { AddGroup.class, EditGroup.class })
private String remark;
......
......@@ -26,7 +26,7 @@ import java.time.LocalDate;
@ColumnWidth(20)
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 40)
@HeadFontStyle(color = 9, fontHeightInPoints = 11)
@AutoMapper(target = EmployeeTraining.class, convertGenerate = false)
@AutoMapper(target = EmployeeTraining.class, reverseConvertGenerate = false)
public class EmployeeTrainingImportVo extends ExcelBaseEntity implements Serializable {
@Serial
......
......@@ -29,7 +29,7 @@ import java.time.LocalDate;
//IndexedColors.SKY_BLUE.getIndex()
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 40)
@HeadFontStyle(color = 9, fontHeightInPoints = 11)
@AutoMapper(target = InterviewProfile.class, convertGenerate = false)
@AutoMapper(target = InterviewProfile.class, reverseConvertGenerate = false)
public class InterviewProfileImportVo extends ExcelBaseEntity implements Serializable {
@Serial
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment