Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YeeAmosFireAutoSysRoot
Project
Project
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
station
YeeAmosFireAutoSysRoot
Commits
6106c31a
Commit
6106c31a
authored
Apr 19, 2024
by
张森
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
下拉列表查询
parent
86d652ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
EmergencyTaskRoleController.java
.../fas/business/controller/EmergencyTaskRoleController.java
+9
-1
No files found.
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/controller/EmergencyTaskRoleController.java
View file @
6106c31a
...
...
@@ -81,7 +81,7 @@ public class EmergencyTaskRoleController extends BaseController {
}
@Permission
@ApiOperation
(
value
=
"
根据批次号获取预案的消息等记录"
,
notes
=
"根据批次号获取预案的消息等记录
"
)
@ApiOperation
(
value
=
"
分页查询"
,
notes
=
"分页查询
"
)
@PostMapping
(
value
=
"/getInfoByPage"
)
public
ResponseModel
<
Page
<
EmergencyTaskRole
>>
getInfoByPage
(
@RequestBody
EmergencyTaskRole
emergencyTaskRole
,
@RequestParam
Integer
pageNum
,
...
...
@@ -102,4 +102,12 @@ public class EmergencyTaskRoleController extends BaseController {
emergencyTaskRoleMapper
.
deleteById
(
id
);
return
CommonResponseUtil2
.
success
();
}
@Permission
@ApiOperation
(
value
=
"下拉列表"
,
notes
=
"下拉列表"
)
@PostMapping
(
value
=
"/getList"
)
public
ResponseModel
<
List
<
EmergencyTaskRole
>>
getList
()
{
List
<
EmergencyTaskRole
>
emergencyTaskRoles
=
emergencyTaskRoleMapper
.
selectList
();
return
CommonResponseUtil2
.
success
(
emergencyTaskRoles
);
}
}
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