类型修正

This commit is contained in:
2025-12-02 16:13:28 +08:00
parent 28787e5b29
commit 90ddcf7af3
82 changed files with 350 additions and 350 deletions

View File

@@ -38,6 +38,6 @@ public class TbMessageChannelDTO extends BaseDTO {
private String status;
@Schema(description = "优先级(数字越大优先级越高)")
private INTEGER priority;
private Integer priority;
}

View File

@@ -113,7 +113,7 @@ public interface MessageService {
* @author yslg
* @since 2025-11-05
*/
ResultDomain<BOOLEAN> deleteMessage(String messageId);
ResultDomain<Boolean> deleteMessage(String messageId);
/**
* @description 发送消息

View File

@@ -44,5 +44,5 @@ public class MessageRangeChannelVO extends BaseVO {
private String channelStatus;
@Schema(description = "渠道优先级(数字越大优先级越高)")
private INTEGER channelPriority;
private Integer channelPriority;
}