14 行
405 B
Java
14 行
405 B
Java
|
|
package com.xuqm.im.model;
|
||
|
|
|
||
|
|
import com.xuqm.im.entity.ImMessageEntity;
|
||
|
|
import jakarta.validation.constraints.NotBlank;
|
||
|
|
import jakarta.validation.constraints.NotNull;
|
||
|
|
|
||
|
|
public record SendMessageRequest(
|
||
|
|
@NotBlank String toId,
|
||
|
|
@NotNull ImMessageEntity.ChatType chatType,
|
||
|
|
@NotNull ImMessageEntity.MsgType msgType,
|
||
|
|
@NotBlank String content,
|
||
|
|
String mentionedUserIds
|
||
|
|
) {}
|