Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
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
pseer
gxpt_ht
Commits
fd1f9f6a
Commit
fd1f9f6a
authored
Oct 15, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小程序增加查询接口
parent
4a87fc9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
SecondaryCardConfController.java
...re/web/controller/system/SecondaryCardConfController.java
+9
-0
No files found.
share-front/src/main/java/share/web/controller/system/SecondaryCardConfController.java
View file @
fd1f9f6a
...
@@ -5,6 +5,7 @@ import org.springframework.web.bind.annotation.GetMapping;
...
@@ -5,6 +5,7 @@ import org.springframework.web.bind.annotation.GetMapping;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.bind.annotation.RestController
;
import
share.common.core.controller.BaseController
;
import
share.common.core.controller.BaseController
;
import
share.common.core.domain.R
;
import
share.common.core.page.TableDataInfo
;
import
share.common.core.page.TableDataInfo
;
import
share.system.domain.vo.SecondaryCardConfVo
;
import
share.system.domain.vo.SecondaryCardConfVo
;
import
share.system.service.SecondaryCardConfService
;
import
share.system.service.SecondaryCardConfService
;
...
@@ -33,4 +34,12 @@ public class SecondaryCardConfController extends BaseController {
...
@@ -33,4 +34,12 @@ public class SecondaryCardConfController extends BaseController {
return
getDataTable
(
list
);
return
getDataTable
(
list
);
}
}
/**
* 查询次卡配置列表
*/
@GetMapping
(
"/query"
)
public
R
<
List
<
SecondaryCardConfVo
>>
query
()
{
return
R
.
ok
(
secondaryCardConfService
.
selectSecondaryCardConfList
(
null
));
}
}
}
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