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
31226bbe
Commit
31226bbe
authored
Mar 18, 2020
by
huangZW
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1111
parent
b1fd4e2d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
AuditSettingApiService.java
...gic/haoban/manage/api/service/AuditSettingApiService.java
+0
-1
DictApiService.java
...ava/com/gic/haoban/manage/api/service/DictApiService.java
+2
-0
EnterpriseController.java
...ic/haoban/manage/web/controller/EnterpriseController.java
+1
-1
DictServiceImpl.java
...oban/manage/service/service/out/impl/DictServiceImpl.java
+5
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/AuditSettingApiService.java
View file @
31226bbe
package
com
.
gic
.
haoban
.
manage
.
api
.
service
;
import
com.gic.haoban.manage.api.dto.ApplicationSettingDTO
;
import
com.gic.haoban.manage.api.dto.AuditSettingDTO
;
/**
...
...
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/DictApiService.java
View file @
31226bbe
...
...
@@ -13,4 +13,6 @@ public interface DictApiService {
DictDTO
findOneDict
(
String
dictId
);
Page
<
DictDTO
>
pageList
(
BasePageInfo
pageInfo
);
void
deleteOne
(
String
dictId
);
}
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/controller/EnterpriseController.java
View file @
31226bbe
...
...
@@ -66,7 +66,7 @@ public class EnterpriseController extends WebBaseController{
return
resultResponse
(
HaoBanErrCode
.
ERR_1
,
pageVo
);
}
//
企业
列表
//
授权详情
列表
@RequestMapping
(
"authorize-detail"
)
public
HaobanResponse
authorizeDetail
(
String
wxEnterpriseId
)
{
List
<
EnterpriseDetailDTO
>
list
=
wxEnterpriseRelatedApiService
.
listEnterpriseByWxEnterpriseId
(
wxEnterpriseId
);
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/DictServiceImpl.java
View file @
31226bbe
...
...
@@ -49,4 +49,9 @@ public class DictServiceImpl implements DictApiService{
PageHelper
.
startPage
(
pageInfo
.
getPageNum
(),
pageInfo
.
getPageSize
());
return
PageUtil
.
changePageHelperToCurrentPage
(
dictMapper
.
pageList
(),
DictDTO
.
class
);
}
@Override
public
void
deleteOne
(
String
dictId
)
{
dictMapper
.
deleteByPrimaryKey
(
dictId
);
}
}
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