feat:matterType
This commit is contained in:
@@ -156,5 +156,8 @@ public class MessageTemplateDO {
|
||||
@Column(name = "jump_url")
|
||||
private String jumpUrl;
|
||||
|
||||
@Column(name = "handle_keyword")
|
||||
private String handleKeyword;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.cool.store.request.notice;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2025/8/29 11:10
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class ThirdHandleMessageRequest {
|
||||
|
||||
@ApiModelProperty("发起任务时 传的handleKeyword")
|
||||
@NotBlank(message = "handleKeyword不能为空")
|
||||
private String handleKeyword;
|
||||
|
||||
@ApiModelProperty("门店编码列表")
|
||||
@NotNull(message = "门店编码列表不能为空")
|
||||
private List<String> shopCodeList;
|
||||
|
||||
}
|
||||
@@ -60,4 +60,7 @@ public class ThirdMatterRequest {
|
||||
|
||||
private String jumpUrl;
|
||||
|
||||
@ApiModelProperty("处理关键字 针对processType需要处理的字段 需要传递该关键字识别 注意 每个批次门店任务keyword不能重复")
|
||||
private String handleKeyword;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user