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.guns.modular.business.dto.ImPushDataDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("测试发送IM消息-请求参数")
public class ImTestMessageSendRequest {
 
    @ApiModelProperty(value = "消息类型,0系统通知,1单聊,2群聊")
    private Integer sendTpe;
 
    @ApiModelProperty(value = "发送方ID")
    private String fromUserId;
 
    @ApiModelProperty(value = "发送方ID")
    private String toId;
 
    @ApiModelProperty(value = "IM推送数据")
    private ImPushDataDTO pushData;
 
}