houzhongjian
4 天以前 f4f9405f99cb35e2fd6cfeae4c54617304228fda
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.controller.admin.definition.vo.group;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import javax.validation.constraints.NotNull;
7 import java.util.Set;
8
9 @Schema(description = "管理后台 - 用户组创建/修改 Request VO")
10 @Data
11 public class BpmUserGroupSaveReqVO {
12
13     @Schema(description = "编号", example = "1024")
14     private Long id;
15
16     @Schema(description = "组名", requiredMode = Schema.RequiredMode.REQUIRED, example = "平台")
17     @NotNull(message = "组名不能为空")
18     private String name;
19
20     @Schema(description = "描述", example = "iailab")
21     private String description;
22
23     @Schema(description = "成员编号数组", requiredMode = Schema.RequiredMode.REQUIRED, example = "1,2,3")
24     @NotNull(message = "成员编号数组不能为空")
25     private Set<Long> userIds;
26
27     @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
28     @NotNull(message = "状态不能为空")
29     private Integer status;
30
31 }