Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
haoban3.0
haoban-manage3.0
Commits
279dd44a
Commit
279dd44a
authored
Aug 14, 2023
by
王祖波
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/feature-content4' into feature-content4
parents
bab16355
e3cd31d0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
2 deletions
+38
-2
WxStaffController.java
...m/gic/haoban/manage/web/controller/WxStaffController.java
+2
-0
StoreClerkVO.java
.../main/java/com/gic/haoban/manage/web/vo/StoreClerkVO.java
+9
-2
ContentMaterialLandingPageVO.java
...ge/web/vo/content/share/ContentMaterialLandingPageVO.java
+27
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/WxStaffController.java
View file @
279dd44a
...
...
@@ -251,6 +251,8 @@ public class WxStaffController extends WebBaseController {
}
else
{
vo
.
setBindFlag
(
0
);
}
long
memberCount
=
customerApiService
.
countMember
(
enterpriseId
,
storeId
,
dto
.
getClerkId
());
vo
.
setMemberCount
(
Convert
.
toInt
(
memberCount
,
0
));
resultList
.
add
(
vo
);
}
Page
<
StoreClerkVO
>
page
=
new
Page
();
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/StoreClerkVO.java
View file @
279dd44a
...
...
@@ -18,6 +18,8 @@ public class StoreClerkVO implements Serializable {
private
String
clerkImg
;
private
String
clerkName
;
private
Integer
memberCount
;
public
String
getClerkName
()
{
return
clerkName
;
}
...
...
@@ -60,7 +62,12 @@ public class StoreClerkVO implements Serializable {
public
void
setBindFlag
(
int
bindFlag
)
{
this
.
bindFlag
=
bindFlag
;
}
public
Integer
getMemberCount
()
{
return
memberCount
;
}
public
void
setMemberCount
(
Integer
memberCount
)
{
this
.
memberCount
=
memberCount
;
}
}
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/content/share/ContentMaterialLandingPageVO.java
View file @
279dd44a
...
...
@@ -51,6 +51,17 @@ public class ContentMaterialLandingPageVO implements Serializable {
*/
private
Integer
shoppingCartNum
;
/**
* 跳转穿搭社区开关
* 1 开启; 0关闭
*/
private
Integer
communityJumpFlag
;
/**
* 同款搭配数量
*/
private
Integer
collocationNum
;
public
ContentMaterialInfoVO
getContentMaterialInfo
()
{
return
contentMaterialInfo
;
...
...
@@ -99,4 +110,20 @@ public class ContentMaterialLandingPageVO implements Serializable {
public
void
setShoppingCartNum
(
Integer
shoppingCartNum
)
{
this
.
shoppingCartNum
=
shoppingCartNum
;
}
public
Integer
getCollocationNum
()
{
return
collocationNum
;
}
public
void
setCollocationNum
(
Integer
collocationNum
)
{
this
.
collocationNum
=
collocationNum
;
}
public
Integer
getCommunityJumpFlag
()
{
return
communityJumpFlag
;
}
public
void
setCommunityJumpFlag
(
Integer
communityJumpFlag
)
{
this
.
communityJumpFlag
=
communityJumpFlag
;
}
}
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