Commit f634c57e by 朱亚洁

feat:[1004853]小程序打卡

parent 491ede85
...@@ -98,6 +98,30 @@ public class TemplateMessageDto implements Serializable { ...@@ -98,6 +98,30 @@ public class TemplateMessageDto implements Serializable {
* 消息来源分类 * 消息来源分类
*/ */
private String fromCategory; private String fromCategory;
/**
* 所需跳转到的小程序appid(该小程序appid必须与发模板消息的公众号是绑定关联关系,暂不支持小游戏)
*/
private String miniprogramAppid;
/**
* 所需跳转到小程序的具体页面路径,支持带参数,(示例index?foo=bar),要求该小程序已发布,暂不支持小游戏
*/
private String miniprogramPagepath;
public String getMiniprogramAppid() {
return miniprogramAppid;
}
public void setMiniprogramAppid(String miniprogramAppid) {
this.miniprogramAppid = miniprogramAppid;
}
public String getMiniprogramPagepath() {
return miniprogramPagepath;
}
public void setMiniprogramPagepath(String miniprogramPagepath) {
this.miniprogramPagepath = miniprogramPagepath;
}
public String getFromCategory() { public String getFromCategory() {
return fromCategory; return fromCategory;
...@@ -229,12 +253,26 @@ public class TemplateMessageDto implements Serializable { ...@@ -229,12 +253,26 @@ public class TemplateMessageDto implements Serializable {
@Override @Override
public String toString() { public String toString() {
return "TemplateMessageDto [sceneCode=" + sceneCode + ", receivePartyId=" + receivePartyId return "TemplateMessageDto{" +
+ ", receiveMemberPartyIds=" + receiveMemberPartyIds + ", receivePartyRole=" + receivePartyRole "sceneCode='" + sceneCode + '\'' +
+ ", sendPartyId=" + sendPartyId + ", sendPartyRole=" + sendPartyRole + ", wechatUserId=" + wechatUserId ", receivePartyId=" + receivePartyId +
+ ", openId=" + openId + ", nickName=" + nickName + ", url=" + url + ", temParam=" + temParam ", receiveMemberPartyIds=" + receiveMemberPartyIds +
+ ", sendType=" + sendType + ", accountSettingId=" + accountSettingId + ", isApp=" + isApp ", receivePartyRole='" + receivePartyRole + '\'' +
+ ", appType=" + appType + "]"; ", sendPartyId=" + sendPartyId +
", sendPartyRole='" + sendPartyRole + '\'' +
", wechatUserId=" + wechatUserId +
", openId='" + openId + '\'' +
", nickName='" + nickName + '\'' +
", url='" + url + '\'' +
", temParam=" + temParam +
", sendType='" + sendType + '\'' +
", accountSettingId=" + accountSettingId +
", isApp=" + isApp +
", appType='" + appType + '\'' +
", fromCategory='" + fromCategory + '\'' +
", miniprogramAppid='" + miniprogramAppid + '\'' +
", miniprogramPagepath='" + miniprogramPagepath + '\'' +
'}';
} }
} }
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