Commit f5c74734 authored by 李成龙's avatar 李成龙

航空器实体增加注释

parent 78398f74
...@@ -2,9 +2,7 @@ package com.yeejoin.amos.boot.module.jcs.api.entity; ...@@ -2,9 +2,7 @@ package com.yeejoin.amos.boot.module.jcs.api.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.yeejoin.amos.boot.biz.common.entity.BaseEntity; import org.typroject.tyboot.core.rdbms.orm.entity.BaseEntity;
import io.swagger.annotations.ApiModel;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors; import lombok.experimental.Accessors;
...@@ -18,94 +16,149 @@ import lombok.experimental.Accessors; ...@@ -18,94 +16,149 @@ import lombok.experimental.Accessors;
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Accessors(chain = true) @Accessors(chain = true)
@TableName("jc_aircraft") @TableName("jc_aircraft")
@ApiModel(value="Aircraft对象", description="航空器信息")
public class Aircraft extends BaseEntity { public class Aircraft extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@TableField("aircraft_model") /**
* 飞机型号
*/
@TableField("aircraft_model")
private String aircraftModel; private String aircraftModel;
/**
@TableField("full_name") * 中文全称
*/
@TableField("full_name")
private String fullName; private String fullName;
/**
@TableField("aircraft_length") * 飞机长度
*/
@TableField("aircraft_length")
private Double aircraftLength; private Double aircraftLength;
/**
@TableField("cabin_length") * 机舱长度
*/
@TableField("cabin_length")
private Double cabinLength; private Double cabinLength;
/**
@TableField("tail_height") * 尾翼高度
*/
@TableField("tail_height")
private Double tailHeight; private Double tailHeight;
/**
@TableField("wingspan") * 翼展
*/
@TableField("wingspan")
private Double wingspan; private Double wingspan;
/**
@TableField("fuselage_diameter") * 机身直径
*/
@TableField("fuselage_diameter")
private Double fuselageDiameter; private Double fuselageDiameter;
/**
@TableField("wingspan_area") * 翼展面积
*/
@TableField("wingspan_area")
private Double wingspanArea; private Double wingspanArea;
/**
@TableField("engine_type") * 发动机类型
*/
@TableField("engine_type")
private String engineType; private String engineType;
/**
@TableField("enginesm_num") * 发动机数量
*/
@TableField("enginesm_num")
private Integer enginesmNum; private Integer enginesmNum;
/**
@TableField("engine_model") * 发动机型号
*/
@TableField("engine_model")
private String engineModel; private String engineModel;
/**
@TableField("fuel_type") * 燃油类型
*/
@TableField("fuel_type")
private String fuelType; private String fuelType;
/**
@TableField("oil_load_max") * 最大载油量
*/
@TableField("oil_load_max")
private Double oilLoadMax; private Double oilLoadMax;
/**
@TableField("standard_fuel") * 标准燃油
*/
@TableField("standard_fuel")
private Double standardFuel; private Double standardFuel;
/**
@TableField("empty_weight") * 空重
*/
@TableField("empty_weight")
private Double emptyWeight; private Double emptyWeight;
/**
@TableField("structural_material") * 飞机主要构造材料
*/
@TableField("structural_material")
private String structuralMaterial; private String structuralMaterial;
/**
@TableField("oxygen_cylinder_num") * 氧气瓶数量
*/
@TableField("oxygen_cylinder_num")
private Integer oxygenCylinderNum; private Integer oxygenCylinderNum;
/**
@TableField("oxygen_cylinder_location") * 氧气瓶位置描述
*/
@TableField("oxygen_cylinder_location")
private String oxygenCylinderLocation; private String oxygenCylinderLocation;
/**
@TableField("seat_num") * 标准坐席数
*/
@TableField("seat_num")
private Integer seatNum; private Integer seatNum;
/**
@TableField("commercial_load") * 商载(吨)
*/
@TableField("commercial_load")
private Double commercialLoad; private Double commercialLoad;
/**
@TableField("warehouse_volume") * 货仓容积(立方米)
*/
@TableField("warehouse_volume")
private Double warehouseVolume; private Double warehouseVolume;
/**
@TableField("takeoff_weight_num") * 最大起飞总重(吨)
*/
@TableField("takeoff_weight_num")
private Double takeoffWeightNum; private Double takeoffWeightNum;
/**
@TableField("cruise_speed_num") * 最大巡航速度(马赫)
*/
@TableField("cruise_speed_num")
private Double cruiseSpeedNum; private Double cruiseSpeedNum;
/**
@TableField("voyage") * 航程
*/
@TableField("voyage")
private Double voyage; private Double voyage;
/**
@TableField("facilitie") * 主要设施
*/
@TableField("facilitie")
private String facilitie; private String facilitie;
/**
@TableField("combustion_material") * 主要燃烧物质
*/
@TableField("combustion_material")
private String combustionMaterial; private String combustionMaterial;
/**
@TableField("exit_passage") * 疏散出口及安全通道
*/
@TableField("exit_passage")
private String exitPassage; private String exitPassage;
/**
@TableField("remark") * 备注
*/
@TableField("remark")
private String remark; private String remark;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment