Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
education
Project
Project
Details
Activity
Releases
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
李丛阳
education
Commits
0b34ce5e
Commit
0b34ce5e
authored
May 03, 2018
by
李博今
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加内部与外部排课查询分页返回数据
parent
46ac832d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
BArrangeController.java
...soft/business/barrange/controller/BArrangeController.java
+8
-10
No files found.
src/main/java/org/rcisoft/business/barrange/controller/BArrangeController.java
View file @
0b34ce5e
...
@@ -57,22 +57,20 @@ public class BArrangeController extends PaginationController<BArrange> {
...
@@ -57,22 +57,20 @@ public class BArrangeController extends PaginationController<BArrange> {
@ApiOperation
(
value
=
"查看 集合"
,
notes
=
"查看单 集合"
)
@ApiOperation
(
value
=
"查看 集合"
,
notes
=
"查看单 集合"
)
@ApiImplicitParam
(
name
=
"termCode"
,
value
=
"学期编号"
,
required
=
false
,
dataType
=
"varchar"
)
@ApiImplicitParam
(
name
=
"termCode"
,
value
=
"学期编号"
,
required
=
false
,
dataType
=
"varchar"
)
@GetMapping
(
value
=
"/findAllByPagination"
)
@GetMapping
(
value
=
"/findAllByPagination"
)
public
Result
findAllByTermCodeByPagination
(
BArrange
bArrange
)
{
public
GridModel
findAllByTermCodeByPagination
(
BArrange
bArrange
)
{
return
Result
.
builder
(
new
PersistModel
(
1
),
bArrangeServiceImpl
.
findAllByPagination
(
getPaginationUtility
(),
bArrange
);
MessageConstant
.
MESSAGE_ALERT_SUCCESS
,
GridModel
gridModel
=
getGridModelResponse
();
MessageConstant
.
MESSAGE_ALERT_ERROR
,
return
gridModel
;
bArrangeServiceImpl
.
findAllByPagination
(
getPaginationUtility
(),
bArrange
));
}
}
@ApiOperation
(
value
=
"企业查看个人排课信息"
,
notes
=
"企业查看个人排课信息"
)
@ApiOperation
(
value
=
"企业查看个人排课信息"
,
notes
=
"企业查看个人排课信息"
)
@ApiImplicitParams
({
@ApiImplicitParam
(
name
=
"agencyCode"
,
value
=
"企业编号"
,
required
=
true
,
dataType
=
"varchar"
),
@ApiImplicitParams
({
@ApiImplicitParam
(
name
=
"agencyCode"
,
value
=
"企业编号"
,
required
=
true
,
dataType
=
"varchar"
),
@ApiImplicitParam
(
name
=
"status"
,
value
=
"状态"
,
required
=
false
,
dataType
=
"varchar"
)})
@ApiImplicitParam
(
name
=
"status"
,
value
=
"状态"
,
required
=
false
,
dataType
=
"varchar"
)})
@GetMapping
(
value
=
"/findAllByAgencyCodeByPagination"
)
@GetMapping
(
value
=
"/findAllByAgencyCodeByPagination"
)
public
Result
findAllByAgencyCodeByPagination
(
@ApiIgnore
BArrange
bArrange
)
{
public
GridModel
findAllByAgencyCodeByPagination
(
@ApiIgnore
BArrange
bArrange
)
{
return
Result
.
builder
(
new
PersistModel
(
1
),
bArrangeServiceImpl
.
findAllByAgencyCodeByPagination
(
getPaginationUtility
(),
bArrange
);
MessageConstant
.
MESSAGE_ALERT_SUCCESS
,
GridModel
gridModel
=
getGridModelResponse
();
MessageConstant
.
MESSAGE_ALERT_ERROR
,
return
gridModel
;
bArrangeServiceImpl
.
findAllByAgencyCodeByPagination
(
getPaginationUtility
(),
bArrange
));
}
}
@ApiOperation
(
value
=
"excel导入"
,
notes
=
"excel导入排课信息"
)
@ApiOperation
(
value
=
"excel导入"
,
notes
=
"excel导入排课信息"
)
...
...
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