Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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
base_platform_enterprise
gic-platform-enterprise
Commits
9711b374
Commit
9711b374
authored
Aug 19, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
公众号菜单列表查询接口修改
parent
361f0044
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
100 additions
and
11 deletions
+100
-11
WechatMenuVO.java
...src/main/java/com/gic/enterprise/web/vo/WechatMenuVO.java
+100
-11
No files found.
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/WechatMenuVO.java
View file @
9711b374
...
...
@@ -33,6 +33,36 @@ public class WechatMenuVO implements Serializable{
*/
private
Integer
parentMenuId
;
/**
* 菜单类型(1:消息,2:外链,3:内链 4:小程序链接)
*/
private
Integer
menuType
;
/**
* 菜单编码,用于解析出URL
*/
private
String
menuCode
;
/**
* 链接地址
*/
private
String
menuUrl
;
/**
* 指定菜单对应的参数,针对门店活动、卡券展架、门店导航等选择指定门店的参数信息
*/
private
String
menuUrlPara
;
/**
* 消息对接字段
*/
private
String
content
;
/**
* 公众号key
*/
private
String
appKey
;
private
List
<
WechatMenuVO
>
child
;
...
...
@@ -40,39 +70,98 @@ public class WechatMenuVO implements Serializable{
return
menuId
;
}
public
void
setMenuId
(
Integer
menuId
)
{
public
WechatMenuVO
setMenuId
(
Integer
menuId
)
{
this
.
menuId
=
menuId
;
return
this
;
}
public
Integer
getSort
()
{
return
sort
;
}
public
void
setSort
(
Integer
sort
)
{
public
WechatMenuVO
setSort
(
Integer
sort
)
{
this
.
sort
=
sort
;
return
this
;
}
public
String
getMenuName
()
{
return
menuName
;
}
public
void
setMenuName
(
String
menuName
)
{
public
WechatMenuVO
setMenuName
(
String
menuName
)
{
this
.
menuName
=
menuName
;
return
this
;
}
public
List
<
WechatMenuVO
>
getChil
d
()
{
return
chil
d
;
public
Integer
getParentMenuI
d
()
{
return
parentMenuI
d
;
}
public
void
setChild
(
List
<
WechatMenuVO
>
child
)
{
this
.
child
=
child
;
public
WechatMenuVO
setParentMenuId
(
Integer
parentMenuId
)
{
this
.
parentMenuId
=
parentMenuId
;
return
this
;
}
public
Integer
get
ParentMenuId
()
{
return
parentMenuId
;
public
Integer
get
MenuType
()
{
return
menuType
;
}
public
void
setParentMenuId
(
Integer
parentMenuId
)
{
this
.
parentMenuId
=
parentMenuId
;
public
WechatMenuVO
setMenuType
(
Integer
menuType
)
{
this
.
menuType
=
menuType
;
return
this
;
}
public
String
getMenuCode
()
{
return
menuCode
;
}
public
WechatMenuVO
setMenuCode
(
String
menuCode
)
{
this
.
menuCode
=
menuCode
;
return
this
;
}
public
String
getMenuUrl
()
{
return
menuUrl
;
}
public
WechatMenuVO
setMenuUrl
(
String
menuUrl
)
{
this
.
menuUrl
=
menuUrl
;
return
this
;
}
public
String
getMenuUrlPara
()
{
return
menuUrlPara
;
}
public
WechatMenuVO
setMenuUrlPara
(
String
menuUrlPara
)
{
this
.
menuUrlPara
=
menuUrlPara
;
return
this
;
}
public
String
getContent
()
{
return
content
;
}
public
WechatMenuVO
setContent
(
String
content
)
{
this
.
content
=
content
;
return
this
;
}
public
String
getAppKey
()
{
return
appKey
;
}
public
WechatMenuVO
setAppKey
(
String
appKey
)
{
this
.
appKey
=
appKey
;
return
this
;
}
public
List
<
WechatMenuVO
>
getChild
()
{
return
child
;
}
public
WechatMenuVO
setChild
(
List
<
WechatMenuVO
>
child
)
{
this
.
child
=
child
;
return
this
;
}
}
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