Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-data-cloud
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-data-cloud
Commits
24f5cf07
Commit
24f5cf07
authored
Jul 10, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小程序二维码
parent
4a430df2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
18 deletions
+35
-18
IndexItemVo.java
...wxapp/src/main/java/com/gic/cloud/web/vo/IndexItemVo.java
+24
-0
StoreWidgetIndexVo.java
...rc/main/java/com/gic/cloud/web/vo/StoreWidgetIndexVo.java
+11
-18
No files found.
gic-data-cloud-wxapp/src/main/java/com/gic/cloud/web/vo/IndexItemVo.java
0 → 100644
View file @
24f5cf07
package
com
.
gic
.
cloud
.
web
.
vo
;
import
java.io.Serializable
;
public
class
IndexItemVo
implements
Serializable
{
private
String
id
;
private
String
name
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
}
gic-data-cloud-wxapp/src/main/java/com/gic/cloud/web/vo/StoreWidgetIndexVo.java
View file @
24f5cf07
package
com
.
gic
.
cloud
.
web
.
vo
;
import
java.util.List
;
public
class
StoreWidgetIndexVo
{
/****1多渠道首页 2单渠道线下首页 3单渠道线上首页****/
private
Integer
type
;
private
String
id
;
private
String
name
;
private
List
<
IndexItemVo
>
items
;
private
Integer
attentionCount
;
public
Integer
getType
()
{
...
...
@@ -15,22 +16,6 @@ public class StoreWidgetIndexVo {
this
.
type
=
type
;
}
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
Integer
getAttentionCount
()
{
return
attentionCount
;
}
...
...
@@ -38,4 +23,12 @@ public class StoreWidgetIndexVo {
public
void
setAttentionCount
(
Integer
attentionCount
)
{
this
.
attentionCount
=
attentionCount
;
}
public
List
<
IndexItemVo
>
getItems
()
{
return
items
;
}
public
void
setItems
(
List
<
IndexItemVo
>
items
)
{
this
.
items
=
items
;
}
}
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