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
f5c74734
Commit
f5c74734
authored
Jun 29, 2021
by
李成龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
航空器实体增加注释
parent
78398f74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
113 additions
and
60 deletions
+113
-60
Aircraft.java
...com/yeejoin/amos/boot/module/jcs/api/entity/Aircraft.java
+113
-60
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/entity/Aircraft.java
View file @
f5c74734
...
...
@@ -2,9 +2,7 @@ package com.yeejoin.amos.boot.module.jcs.api.entity;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.yeejoin.amos.boot.biz.common.entity.BaseEntity
;
import
io.swagger.annotations.ApiModel
;
import
org.typroject.tyboot.core.rdbms.orm.entity.BaseEntity
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.experimental.Accessors
;
...
...
@@ -18,94 +16,149 @@ import lombok.experimental.Accessors;
@EqualsAndHashCode
(
callSuper
=
true
)
@Accessors
(
chain
=
true
)
@TableName
(
"jc_aircraft"
)
@ApiModel
(
value
=
"Aircraft对象"
,
description
=
"航空器信息"
)
public
class
Aircraft
extends
BaseEntity
{
private
static
final
long
serialVersionUID
=
1L
;
@TableField
(
"aircraft_model"
)
/**
* 飞机型号
*/
@TableField
(
"aircraft_model"
)
private
String
aircraftModel
;
@TableField
(
"full_name"
)
/**
* 中文全称
*/
@TableField
(
"full_name"
)
private
String
fullName
;
@TableField
(
"aircraft_length"
)
/**
* 飞机长度
*/
@TableField
(
"aircraft_length"
)
private
Double
aircraftLength
;
@TableField
(
"cabin_length"
)
/**
* 机舱长度
*/
@TableField
(
"cabin_length"
)
private
Double
cabinLength
;
@TableField
(
"tail_height"
)
/**
* 尾翼高度
*/
@TableField
(
"tail_height"
)
private
Double
tailHeight
;
@TableField
(
"wingspan"
)
/**
* 翼展
*/
@TableField
(
"wingspan"
)
private
Double
wingspan
;
@TableField
(
"fuselage_diameter"
)
/**
* 机身直径
*/
@TableField
(
"fuselage_diameter"
)
private
Double
fuselageDiameter
;
@TableField
(
"wingspan_area"
)
/**
* 翼展面积
*/
@TableField
(
"wingspan_area"
)
private
Double
wingspanArea
;
@TableField
(
"engine_type"
)
/**
* 发动机类型
*/
@TableField
(
"engine_type"
)
private
String
engineType
;
@TableField
(
"enginesm_num"
)
/**
* 发动机数量
*/
@TableField
(
"enginesm_num"
)
private
Integer
enginesmNum
;
@TableField
(
"engine_model"
)
/**
* 发动机型号
*/
@TableField
(
"engine_model"
)
private
String
engineModel
;
@TableField
(
"fuel_type"
)
/**
* 燃油类型
*/
@TableField
(
"fuel_type"
)
private
String
fuelType
;
@TableField
(
"oil_load_max"
)
/**
* 最大载油量
*/
@TableField
(
"oil_load_max"
)
private
Double
oilLoadMax
;
@TableField
(
"standard_fuel"
)
/**
* 标准燃油
*/
@TableField
(
"standard_fuel"
)
private
Double
standardFuel
;
@TableField
(
"empty_weight"
)
/**
* 空重
*/
@TableField
(
"empty_weight"
)
private
Double
emptyWeight
;
@TableField
(
"structural_material"
)
/**
* 飞机主要构造材料
*/
@TableField
(
"structural_material"
)
private
String
structuralMaterial
;
@TableField
(
"oxygen_cylinder_num"
)
/**
* 氧气瓶数量
*/
@TableField
(
"oxygen_cylinder_num"
)
private
Integer
oxygenCylinderNum
;
@TableField
(
"oxygen_cylinder_location"
)
/**
* 氧气瓶位置描述
*/
@TableField
(
"oxygen_cylinder_location"
)
private
String
oxygenCylinderLocation
;
@TableField
(
"seat_num"
)
/**
* 标准坐席数
*/
@TableField
(
"seat_num"
)
private
Integer
seatNum
;
@TableField
(
"commercial_load"
)
/**
* 商载(吨)
*/
@TableField
(
"commercial_load"
)
private
Double
commercialLoad
;
@TableField
(
"warehouse_volume"
)
/**
* 货仓容积(立方米)
*/
@TableField
(
"warehouse_volume"
)
private
Double
warehouseVolume
;
@TableField
(
"takeoff_weight_num"
)
/**
* 最大起飞总重(吨)
*/
@TableField
(
"takeoff_weight_num"
)
private
Double
takeoffWeightNum
;
@TableField
(
"cruise_speed_num"
)
/**
* 最大巡航速度(马赫)
*/
@TableField
(
"cruise_speed_num"
)
private
Double
cruiseSpeedNum
;
@TableField
(
"voyage"
)
/**
* 航程
*/
@TableField
(
"voyage"
)
private
Double
voyage
;
@TableField
(
"facilitie"
)
/**
* 主要设施
*/
@TableField
(
"facilitie"
)
private
String
facilitie
;
@TableField
(
"combustion_material"
)
/**
* 主要燃烧物质
*/
@TableField
(
"combustion_material"
)
private
String
combustionMaterial
;
@TableField
(
"exit_passage"
)
/**
* 疏散出口及安全通道
*/
@TableField
(
"exit_passage"
)
private
String
exitPassage
;
@TableField
(
"remark"
)
/**
* 备注
*/
@TableField
(
"remark"
)
private
String
remark
;
}
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