2026-06-30 24681c81c09022f584a57006f2534b5f74723414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package cn.iocoder.yudao.module.im.controller.admin.group.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import jakarta.validation.constraints.*;
 
@Schema(description = "管理后台 - 群新增/修改 Request VO")
@Data
public class ImGroupSaveReqVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1003")
    private Long id;
 
    @Schema(description = "群名称", example = "芋艿")
    private String name;
 
    @Schema(description = "群主用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "31460")
    @NotNull(message = "群主用户编号不能为空")
    private Long ownerUserId;
 
    @Schema(description = "群头像")
    private String avatar;
 
    @Schema(description = "群公告")
    private String notice;
 
}