|
@@ -0,0 +1,22 @@
|
|
|
|
+package com.zjugis.module.system.controller.admin.user.vo.user;
|
|
|
|
+
|
|
|
|
+import com.zjugis.framework.common.enums.CommonStatusEnum;
|
|
|
|
+import com.zjugis.framework.common.validation.InEnum;
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
+import lombok.Data;
|
|
|
|
+
|
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
|
+
|
|
|
|
+@Schema(description = "管理后台 - 用户更新状态 Request VO")
|
|
|
|
+@Data
|
|
|
|
+public class UserUpdateAttendanceFlagReqVO {
|
|
|
|
+
|
|
|
|
+ @Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
|
|
|
+ @NotNull(message = "角色编号不能为空")
|
|
|
|
+ private String id;
|
|
|
|
+
|
|
|
|
+ @Schema(description = "考勤标志", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
|
+ @NotNull(message = "考勤标志不能为为空")
|
|
|
|
+ private Boolean attendanceFlag;
|
|
|
|
+
|
|
|
|
+}
|