Commit 995f2e1c by gaopeng

C904

parent e5768a8b
...@@ -32,6 +32,14 @@ public class SendAppMessageDto implements Serializable{ ...@@ -32,6 +32,14 @@ public class SendAppMessageDto implements Serializable{
* 模板参数 * 模板参数
*/ */
private Map<String, Object> paramKeyMap; private Map<String, Object> paramKeyMap;
/**
* 设备类型
*/
private String deviceType;
/**
* 应用id
*/
private Long appId;
public String getRegistrationId() { public String getRegistrationId() {
return registrationId; return registrationId;
...@@ -64,12 +72,35 @@ public class SendAppMessageDto implements Serializable{ ...@@ -64,12 +72,35 @@ public class SendAppMessageDto implements Serializable{
public void setIsNow(Boolean isNow) { public void setIsNow(Boolean isNow) {
this.isNow = isNow; this.isNow = isNow;
} }
public String getDeviceType() {
return deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
public Long getAppId() {
return appId;
}
public void setAppId(Long appId) {
this.appId = appId;
}
@Override @Override
public String toString() { public String toString() {
return "SendAppMessageDto [registrationId=" + registrationId + ", adviserId=" + adviserId + ", typeCode=" return "SendAppMessageDto{" +
+ typeCode + ", isNow=" + isNow + ", paramKeyMap=" + paramKeyMap + "]"; "registrationId='" + registrationId + '\'' +
", adviserId=" + adviserId +
", typeCode='" + typeCode + '\'' +
", isNow=" + isNow +
", paramKeyMap=" + paramKeyMap +
", deviceType='" + deviceType + '\'' +
", appId=" + appId +
'}';
} }
} }
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