Commit 5a2b6fad by tc

add qq type

parent e27f7194
......@@ -416,4 +416,9 @@ public class MQTopicProducer {
*/
public static final String WXGROUP_SEND_NOT_TEXT = "topic.WXGroupSendNotText";
/**
* QQ发送文字消息
*/
public static final String QQ_SEND_NOT_TEXT = "topic.QQSendNotText";
}
package com.pcloud.common.core.dto;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
*
* @描述:QQ消息
* @作者:TianChao
* @创建时间:2020年3月17日 下午3:04:16
* @版本:1.0
*/
public class SendQQMessageDto implements Serializable{
/**
*
*/
private static final long serialVersionUID = 8026368438145316971L;
private Long senderQQCode;
private Long robotQQCde;
private String message;
public Long getSenderQQCode() {
return senderQQCode;
}
public void setSenderQQCode(Long senderQQCode) {
this.senderQQCode = senderQQCode;
}
public Long getRobotQQCde() {
return robotQQCde;
}
public void setRobotQQCde(Long robotQQCde) {
this.robotQQCde = robotQQCde;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public String toString() {
return "SendQQMessageDto{" +
"senderQQCode=" + senderQQCode +
", robotQQCde=" + robotQQCde +
", message='" + message + '\'' +
'}';
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment