guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.stylefeng.guns.modular.business.dto.request;
 
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel("群聊信息编辑-请求参数")
@Data
public class ImGroupUpdateRequest {
 
    @ApiModelProperty(value = "主键")
    @ChineseDescription("主键")
    private Long id;
 
    @ApiModelProperty(value = "群名")
    @ChineseDescription("群名")
    private String name;
 
    @ApiModelProperty(value = "简介")
    @ChineseDescription("简介")
    private String intro;
 
}