盘库巡检推送消息位置修改
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
package com.yxt.messagecenter.api.message;
|
||||
|
||||
import com.yxt.common.core.query.Query;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class AppScmMessageFlowableQuery implements Query {
|
||||
|
||||
private static final long serialVersionUID = -264602388959108722L;
|
||||
@ApiModelProperty("盘库sid")
|
||||
private String mainSid;
|
||||
|
||||
@ApiModelProperty("接收人sid")
|
||||
private List<String> list;
|
||||
|
||||
@ApiModelProperty("接收人id")
|
||||
private List<String> receiveIdList;
|
||||
|
||||
@ApiModelProperty("消息标题")
|
||||
private String msgTitle;
|
||||
|
||||
//+ "提交的月度盘库报告,请查阅"
|
||||
@ApiModelProperty("消息内容")
|
||||
private String msgContent;
|
||||
|
||||
@ApiModelProperty("来源(资源名称)")
|
||||
private String msgSource;
|
||||
|
||||
//MsgTargetUriEnum.GYLPKBG.getUri()
|
||||
@ApiModelProperty("推送的消息打开的action(APP),推送参数对应class_name")
|
||||
private String msgTargetUri;
|
||||
|
||||
//"2"
|
||||
@ApiModelProperty("0.内置Activity 1.内置WebView 2.RePlugin插件")
|
||||
private String app_type;
|
||||
|
||||
//"98ff0724-5df4-4fc7-ab6d-3996e7706acd"
|
||||
@ApiModelProperty("插件Sid")
|
||||
private String moduleSid;
|
||||
|
||||
@ApiModelProperty("名称")
|
||||
private String name;
|
||||
}
|
||||
@@ -67,4 +67,9 @@ public interface MessageFeign {
|
||||
@ApiOperation("流程审批推送消息")
|
||||
@PostMapping("/pushMessage")
|
||||
ResultBean<String> pushMessage(@RequestBody MessageFlowableQuery query);
|
||||
|
||||
@ApiOperation("供应链流程审批推送消息")
|
||||
@PostMapping("/sendMessage")
|
||||
ResultBean<String> sendMessage(@RequestBody AppScmMessageFlowableQuery query);
|
||||
|
||||
}
|
||||
@@ -63,4 +63,9 @@ public class MessageFeignFallback implements MessageFeign {
|
||||
public ResultBean<String> pushMessage(MessageFlowableQuery query) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ResultBean<String> sendMessage(AppScmMessageFlowableQuery query) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user