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
b455320f
Commit
b455320f
authored
Jan 06, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
画布
parent
6ae3fd0d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
0 deletions
+17
-0
StaffClerkRelationApiService.java
...oban/manage/api/service/StaffClerkRelationApiService.java
+2
-0
TabHaobanStaffClerkRelationMapper.java
...service/dao/mapper/TabHaobanStaffClerkRelationMapper.java
+2
-0
StaffClerkRelationService.java
...ban/manage/service/service/StaffClerkRelationService.java
+2
-0
StaffClerkRelationApiServiceImpl.java
...ce/service/out/impl/StaffClerkRelationApiServiceImpl.java
+5
-0
TabHaobanStaffClerkRelationMapper.xml
...in/resources/mapper/TabHaobanStaffClerkRelationMapper.xml
+6
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/StaffClerkRelationApiService.java
View file @
b455320f
...
...
@@ -223,6 +223,8 @@ public interface StaffClerkRelationApiService {
List
<
String
>
listAllClerkIdsByEnterpriseId
(
String
enterpriseId
);
List
<
String
>
listAlStoreIdsByEnterpriseId
(
String
enterpriseId
);
/**
* 画布查询关联好办的的导购
* @param wxEnterpriseId
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/dao/mapper/TabHaobanStaffClerkRelationMapper.java
View file @
b455320f
...
...
@@ -125,6 +125,8 @@ public interface TabHaobanStaffClerkRelationMapper {
List
<
String
>
listAllClerkIdsByEnterpriseId
(
@Param
(
"enterpriseId"
)
String
enterpriseId
);
List
<
String
>
listAlStoreIdsByEnterpriseId
(
@Param
(
"enterpriseId"
)
String
enterpriseId
);
/**
* 根据staffId查询gic品牌id
* @param wxEnterpriseId 企业微信id
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/StaffClerkRelationService.java
View file @
b455320f
...
...
@@ -184,6 +184,8 @@ public interface StaffClerkRelationService {
*/
List
<
String
>
listAllClerkIdsByEnterpriseId
(
String
enterpriseId
);
List
<
String
>
listAlStoreIdsByEnterpriseId
(
String
enterpriseId
);
/**
* 根据staffId查询gic品牌id
* @param wxEnterpriseId 企业微信id
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/StaffClerkRelationApiServiceImpl.java
View file @
b455320f
...
...
@@ -661,6 +661,11 @@ public class StaffClerkRelationApiServiceImpl implements StaffClerkRelationApiSe
}
@Override
public
List
<
String
>
listAlStoreIdsByEnterpriseId
(
String
enterpriseId
)
{
return
this
.
staffClerkRelationService
.
listAlStoreIdsByEnterpriseId
(
enterpriseId
);
}
@Override
public
ServiceResponse
<
Map
<
String
,
List
<
String
>>>
listClerkForCanvas
(
String
wxEnterpriseId
,
String
enterpriseId
,
String
creatorId
,
String
storeFilterId
)
{
return
staffClerkRelationService
.
listClerkForCanvas
(
wxEnterpriseId
,
enterpriseId
,
creatorId
,
storeFilterId
);
}
...
...
haoban-manage3-service/src/main/resources/mapper/TabHaobanStaffClerkRelationMapper.xml
View file @
b455320f
...
...
@@ -439,6 +439,12 @@
where a.enterprise_id = #{enterpriseId} and a.status_flag=1 and b.status_flag = 1
</select>
<select
id=
"listAlStoreIdsByEnterpriseId"
resultType=
"java.lang.String"
>
select distinct(a.store_id) storeId
from tab_haoban_staff_clerk_relation a inner join tab_haoban_staff b on b.staff_id = a.staff_id
where a.enterprise_id = #{enterpriseId} and a.status_flag=1 and b.status_flag = 1
</select>
<select
id=
"listByWxEnterpriseIdAndStaffId"
resultType=
"com.gic.haoban.manage.api.dto.StaffClerkRelationDTO"
>
select
staff_id staffId,
...
...
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