
4 changed files with 99 additions and 0 deletions
@ -0,0 +1,63 @@ |
|||||
|
package com.yxt.messagecenter.api.message; |
||||
|
|
||||
|
import com.yxt.common.core.dto.Dto; |
||||
|
import com.yxt.common.core.query.Query; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.util.Map; |
||||
|
|
||||
|
/** |
||||
|
* @Author dimengzhe |
||||
|
* @Date 2022/8/25 15:12 |
||||
|
* @Description |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MessagePushTransferDto implements Dto { |
||||
|
|
||||
|
@ApiModelProperty("业务sid") |
||||
|
private String businessSid; |
||||
|
@ApiModelProperty("模块名称") |
||||
|
private String moduleName; |
||||
|
@ApiModelProperty("消息内容") |
||||
|
private String msgContent; |
||||
|
@ApiModelProperty("消息标题") |
||||
|
private String msgTitle; |
||||
|
@ApiModelProperty("app所需参数") |
||||
|
private Map<String,Object> appMap; |
||||
|
@ApiModelProperty("消息类别sid") |
||||
|
private String msgTypeSid; |
||||
|
@ApiModelProperty("消息类别名称") |
||||
|
private String msgType; |
||||
|
@ApiModelProperty("来源(资源名称)") |
||||
|
private String msgSource; |
||||
|
@ApiModelProperty("发送人sid") |
||||
|
private String senderSid; |
||||
|
@ApiModelProperty("发起人姓名") |
||||
|
private String senderName; |
||||
|
@ApiModelProperty("发送人部门Id") |
||||
|
private String senderDeptSid; |
||||
|
@ApiModelProperty("发起人部门名称") |
||||
|
private String senderDeptName; |
||||
|
@ApiModelProperty("插件Sid") |
||||
|
private String moduleSid; |
||||
|
@ApiModelProperty("具体页面action") |
||||
|
private String moduleAction; |
||||
|
@ApiModelProperty("0.内置Activity 1.内置WebView 2.RePlugin插件") |
||||
|
private String app_type; |
||||
|
@ApiModelProperty("参数(规则),json类型的传参(必须为 string、string)") |
||||
|
private String args_json; |
||||
|
@ApiModelProperty("目标网页地址") |
||||
|
private String h5_url; |
||||
|
@ApiModelProperty("小程序页面地址") |
||||
|
private String xcx_url; |
||||
|
@ApiModelProperty("推送的消息打开的action(APP),推送参数对应class_name") |
||||
|
private String msgTargetUri; |
||||
|
|
||||
|
@ApiModelProperty(value = "接收人(多个人员以,分隔)") |
||||
|
private String receiveNames; |
||||
|
|
||||
|
@ApiModelProperty(value = "接收人sid(多个人员以,分隔)") |
||||
|
private String receiveSids; |
||||
|
} |
Loading…
Reference in new issue