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
f60f463e
Commit
f60f463e
authored
Jun 30, 2021
by
xinglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*)修改查询找不到图片问题
parent
2f24142a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
AircraftDto.java
...com/yeejoin/amos/boot/module/jcs/api/dto/AircraftDto.java
+6
-0
Aircraft.java
...com/yeejoin/amos/boot/module/jcs/api/entity/Aircraft.java
+10
-0
AircraftServiceImpl.java
...boot/module/jcs/biz/service/impl/AircraftServiceImpl.java
+0
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-jcs-api/src/main/java/com/yeejoin/amos/boot/module/jcs/api/dto/AircraftDto.java
View file @
f60f463e
...
...
@@ -47,6 +47,9 @@ public class AircraftDto extends BaseDto {
@ApiModelProperty
(
value
=
"发动机类型"
)
private
String
engineType
;
@ApiModelProperty
(
value
=
"发动机类型code"
)
private
String
engineTypeCode
;
@ApiModelProperty
(
value
=
"发动机数量"
)
private
Integer
enginesmNum
;
...
...
@@ -56,6 +59,9 @@ public class AircraftDto extends BaseDto {
@ApiModelProperty
(
value
=
"燃油类型"
)
private
String
fuelType
;
@ApiModelProperty
(
value
=
"燃油类型code"
)
private
String
fuelTypeCode
;
@ApiModelProperty
(
value
=
"最大载油量"
)
private
Double
oilLoadMax
;
...
...
amos-boot-module/amos-boot-module-api/amos-boot-module-jcs-api/src/main/java/com/yeejoin/amos/boot/module/jcs/api/entity/Aircraft.java
View file @
f60f463e
...
...
@@ -67,6 +67,11 @@ public class Aircraft extends BaseEntity {
@TableField
(
"engine_type"
)
private
String
engineType
;
/**
* 发动机类型code
*/
@TableField
(
"engine_type_code"
)
private
String
engineTypeCode
;
/**
* 发动机数量
*/
@TableField
(
"enginesm_num"
)
...
...
@@ -82,6 +87,11 @@ public class Aircraft extends BaseEntity {
@TableField
(
"fuel_type"
)
private
String
fuelType
;
/**
* 燃油类型code
*/
@TableField
(
"fuel_type_code"
)
private
String
fuelTypeCode
;
/**
* 最大载油量
*/
@TableField
(
"oil_load_max"
)
...
...
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 @
f60f463e
This diff is collapsed.
Click to expand it.
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