Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
7852ec98
Commit
7852ec98
authored
Jul 09, 2021
by
suhuiguang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://172.16.10.76/moa/amos-boot-biz
into developer
parents
1c25877f
d3297eaa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
AircraftController.java
...os/boot/module/jcs/biz/controller/AircraftController.java
+3
-3
AircraftServiceImpl.java
...boot/module/jcs/biz/service/impl/AircraftServiceImpl.java
+2
-2
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-jcs-biz/src/main/java/com/yeejoin/amos/boot/module/jcs/biz/controller/AircraftController.java
View file @
7852ec98
...
@@ -119,14 +119,14 @@ public class AircraftController extends BaseController {
...
@@ -119,14 +119,14 @@ public class AircraftController extends BaseController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"航空器信息分页查询"
,
notes
=
"航空器信息分页查询"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"航空器信息分页查询"
,
notes
=
"航空器信息分页查询"
)
public
ResponseModel
<
Page
<
AircraftDto
>>
queryForPage
(
public
ResponseModel
<
Page
<
AircraftDto
>>
queryForPage
(
@RequestParam
(
value
=
"aircraftModel"
,
required
=
false
)
String
aircraftModel
,
@RequestParam
(
value
=
"aircraftModel"
,
required
=
false
)
String
aircraftModel
,
@RequestParam
(
value
=
"engineType
"
,
required
=
false
)
String
engineTyp
e
,
@RequestParam
(
value
=
"engineType
Code"
,
required
=
false
)
String
engineTypeCod
e
,
@RequestParam
(
value
=
"fuelType
"
,
required
=
false
)
String
fuelTyp
e
,
@RequestParam
(
value
=
"fuelType
Code"
,
required
=
false
)
String
fuelTypeCod
e
,
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"current"
)
int
current
,
@RequestParam
(
value
=
"size"
)
int
size
)
{
@RequestParam
(
value
=
"size"
)
int
size
)
{
Page
<
AircraftDto
>
page
=
new
Page
<
AircraftDto
>();
Page
<
AircraftDto
>
page
=
new
Page
<
AircraftDto
>();
page
.
setCurrent
(
current
);
page
.
setCurrent
(
current
);
page
.
setSize
(
size
);
page
.
setSize
(
size
);
return
ResponseHelper
.
buildResponse
(
aircraftServiceImpl
.
queryForAircraftPage
(
page
,
false
,
aircraftModel
,
return
ResponseHelper
.
buildResponse
(
aircraftServiceImpl
.
queryForAircraftPage
(
page
,
false
,
aircraftModel
,
engineType
,
fuelTyp
e
));
engineType
Code
,
fuelTypeCod
e
));
}
}
}
}
amos-boot-module/amos-boot-module-biz/amos-boot-module-jcs-biz/src/main/java/com/yeejoin/amos/boot/module/jcs/biz/service/impl/AircraftServiceImpl.java
View file @
7852ec98
...
@@ -142,8 +142,8 @@ public class AircraftServiceImpl extends BaseService<AircraftDto, Aircraft, Airc
...
@@ -142,8 +142,8 @@ public class AircraftServiceImpl extends BaseService<AircraftDto, Aircraft, Airc
public
Page
<
AircraftDto
>
queryForAircraftPage
(
Page
<
AircraftDto
>
page
,
public
Page
<
AircraftDto
>
queryForAircraftPage
(
Page
<
AircraftDto
>
page
,
Boolean
isDelete
,
Boolean
isDelete
,
@Condition
(
Operator
.
like
)
String
aircraftModel
,
@Condition
(
Operator
.
like
)
String
aircraftModel
,
String
engineType
,
String
fuelTyp
e
)
{
String
engineType
Code
,
String
fuelTypeCod
e
)
{
return
this
.
queryForPage
(
page
,
null
,
false
,
isDelete
,
aircraftModel
,
engineType
,
fuelTyp
e
);
return
this
.
queryForPage
(
page
,
null
,
false
,
isDelete
,
aircraftModel
,
engineType
Code
,
fuelTypeCod
e
);
}
}
/**
/**
...
...
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