Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐少华
midjourney-proxy
Commits
f634c57e
Commit
f634c57e
authored
Jun 23, 2021
by
朱亚洁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:[1004853]小程序打卡
parent
491ede85
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
6 deletions
+44
-6
TemplateMessageDto.java
...n/java/com/pcloud/common/core/dto/TemplateMessageDto.java
+44
-6
No files found.
pcloud-common-core/src/main/java/com/pcloud/common/core/dto/TemplateMessageDto.java
View file @
f634c57e
...
...
@@ -98,6 +98,30 @@ public class TemplateMessageDto implements Serializable {
* 消息来源分类
*/
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
()
{
return
fromCategory
;
...
...
@@ -229,12 +253,26 @@ public class TemplateMessageDto implements Serializable {
@Override
public
String
toString
()
{
return
"TemplateMessageDto [sceneCode="
+
sceneCode
+
", receivePartyId="
+
receivePartyId
+
", receiveMemberPartyIds="
+
receiveMemberPartyIds
+
", receivePartyRole="
+
receivePartyRole
+
", sendPartyId="
+
sendPartyId
+
", sendPartyRole="
+
sendPartyRole
+
", wechatUserId="
+
wechatUserId
+
", openId="
+
openId
+
", nickName="
+
nickName
+
", url="
+
url
+
", temParam="
+
temParam
+
", sendType="
+
sendType
+
", accountSettingId="
+
accountSettingId
+
", isApp="
+
isApp
+
", appType="
+
appType
+
"]"
;
return
"TemplateMessageDto{"
+
"sceneCode='"
+
sceneCode
+
'\''
+
", receivePartyId="
+
receivePartyId
+
", receiveMemberPartyIds="
+
receiveMemberPartyIds
+
", receivePartyRole='"
+
receivePartyRole
+
'\''
+
", 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
+
'\''
+
'}'
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment