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
d07f149d
Commit
d07f149d
authored
Jul 22, 2024
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
积分别名
parent
bfde03c8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
WxStaffController.java
...m/gic/haoban/manage/web/controller/WxStaffController.java
+16
-0
StaffStoreVO.java
.../main/java/com/gic/haoban/manage/web/vo/StaffStoreVO.java
+10
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/WxStaffController.java
View file @
d07f149d
...
...
@@ -1589,6 +1589,7 @@ public class WxStaffController extends WebBaseController {
vo
.
setEnterpriseImg
(
enterpriseDTO
.
getQcloudImageUrl
());
list
.
add
(
vo
);
}
this
.
integralAlias
(
list
)
;
return
RestResponse
.
successResult
(
list
);
}
// 门店列表
...
...
@@ -1687,9 +1688,24 @@ public class WxStaffController extends WebBaseController {
});
}
}
this
.
integralAlias
(
list
)
;
return
RestResponse
.
successResult
(
list
);
}
private
void
integralAlias
(
List
<
StaffStoreVO
>
list
)
{
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
for
(
StaffStoreVO
vo
:
list
)
{
String
enterpriseId
=
vo
.
getEnterpriseId
()
;
String
integralText
=
"淘气值"
;
if
(
org
.
apache
.
commons
.
lang
.
StringUtils
.
isBlank
(
integralText
))
{
integralText
=
"积分"
;
}
vo
.
setIntegralTextAlias
(
integralText
);
}
}
}
/**
* 会员关联数量
*/
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/StaffStoreVO.java
View file @
d07f149d
...
...
@@ -31,6 +31,16 @@ public class StaffStoreVO implements Serializable {
private
Boolean
enableHaoban
;
private
String
storeCode
;
// 积分别名
private
String
integralTextAlias
;
public
String
getIntegralTextAlias
()
{
return
integralTextAlias
;
}
public
void
setIntegralTextAlias
(
String
integralTextAlias
)
{
this
.
integralTextAlias
=
integralTextAlias
;
}
public
Integer
getMemberOpenCardFlag
()
{
return
memberOpenCardFlag
;
...
...
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