From ffc9db2d0b94615f4aebaadeafe64a7e6ccf750b Mon Sep 17 00:00:00 2001 From: mg <maokecheng@163.com> Date: 星期一, 17 十月 2022 15:09:47 +0800 Subject: [PATCH] 定时扫描短信消息。 --- ycl-platform/src/main/java/com/ycl/dto/message/MessageParam.java | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/dto/message/MessageParam.java b/ycl-platform/src/main/java/com/ycl/dto/message/MessageParam.java index 08cdb03..b1f84a4 100644 --- a/ycl-platform/src/main/java/com/ycl/dto/message/MessageParam.java +++ b/ycl-platform/src/main/java/com/ycl/dto/message/MessageParam.java @@ -1,5 +1,7 @@ package com.ycl.dto.message; +import com.baomidou.mybatisplus.annotation.TableField; +import com.ycl.api.BasePageVO; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -16,7 +18,7 @@ */ @Data @ApiModel("娑堟伅鍙傛暟浣�") -public class MessageParam { +public class MessageParam extends BasePageVO { /** * 鏍囬 */ @@ -24,9 +26,16 @@ @NotNull(message = "鏍囬涓虹┖") private String head; /** + * 娓犻亾鐮�01-鍐呯珯淇�02-閭欢03-鐭俊 + */ + @TableField("channel_code") + @ApiModelProperty(value = "娓犻亾鐮�01-鍐呯珯淇�02-閭欢03-鐭俊") + @NotNull(message = "娓犻亾鐮佷负绌�") + private String channelCode; + /** * 娑堟伅绫诲瀷 */ - @ApiModelProperty(value = "娑堟伅绫诲瀷") + @ApiModelProperty(value = "濉厖鏍忕洰缂栫爜", required = true) @NotNull(message = "娑堟伅绫诲瀷涓虹┖") private Integer messageType; /** @@ -73,4 +82,9 @@ */ @ApiModelProperty(value = "鍒涘缓浜�") private Long createUser; + /** + * 鏄惁鎵弿0-鏈壂鎻�1-宸叉壂鎻� + */ + @ApiModelProperty(value = "鏄惁鎵弿0-鏈壂鎻�1-宸叉壂鎻�") + private Integer isScan; } \ No newline at end of file -- Gitblit v1.8.0