|
@@ -50,7 +50,7 @@ public class EmployeeInfoSaveReqVO {
|
|
@Schema(description = "离职原因", example = "不香")
|
|
@Schema(description = "离职原因", example = "不香")
|
|
private String resignationReason;
|
|
private String resignationReason;
|
|
|
|
|
|
- @Schema(description = "员工状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
|
+ @Schema(description = "员工状态:0-在职,1-试用,2-离职", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
@NotEmpty(message = "员工状态不能为空")
|
|
@NotEmpty(message = "员工状态不能为空")
|
|
private String employeeStatus;
|
|
private String employeeStatus;
|
|
|
|
|
|
@@ -144,7 +144,7 @@ public class EmployeeInfoSaveReqVO {
|
|
@Schema(description = "头像地址")
|
|
@Schema(description = "头像地址")
|
|
private String avatar;
|
|
private String avatar;
|
|
|
|
|
|
- @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
|
|
|
+ @Schema(description = "状态:0-开启,1-关闭", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
@NotNull(message = "状态不能为空")
|
|
@NotNull(message = "状态不能为空")
|
|
private Integer status;
|
|
private Integer status;
|
|
|
|
|