增加机位 @ApiModel、@ApiModelProperty Dto属性值。
This commit is contained in:
@@ -1,61 +1,90 @@
|
||||
package com.gzzn.omms.adminapi.dto.basicdata;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@ApiModel(value="机位Dto",description="机位基础数据")
|
||||
public class OrmsStandDto {
|
||||
|
||||
private String standCode; //停机位号
|
||||
@ApiModelProperty(value="停机位号",example="229")
|
||||
private String standCode;
|
||||
|
||||
private BigDecimal currentFlightId; //当前航班ID
|
||||
@ApiModelProperty(value="当前航班ID",example="1000")
|
||||
private BigDecimal currentFlightId;
|
||||
|
||||
private String ddgt; //该机位默认的国内登机门
|
||||
@ApiModelProperty(value="该机位默认的国内登机门",example="A")
|
||||
private String ddgt;
|
||||
|
||||
private String digt; //该机位默认的国际登机门
|
||||
@ApiModelProperty(value="该机位默认的国际登机门",example="G")
|
||||
private String digt;
|
||||
|
||||
private String fstandCode; //父停机位号
|
||||
@ApiModelProperty(value="父停机位号",example="A1")
|
||||
private String fstandCode;
|
||||
|
||||
private BigDecimal iconLength; //资源图标长度(单位:像素)
|
||||
@ApiModelProperty(value="资源图标长度(单位:像素)",example="")
|
||||
private BigDecimal iconLength;
|
||||
|
||||
private BigDecimal iconWidth; //资源图标宽度(单位:像素)
|
||||
@ApiModelProperty(value="资源图标宽度(单位:像素)",example="")
|
||||
private BigDecimal iconWidth;
|
||||
|
||||
@ApiModelProperty(value="",example="")
|
||||
private String lstandCode;
|
||||
|
||||
private BigDecimal maxPermit; //该停机位可容纳的最大旅客数/最大翼展
|
||||
@ApiModelProperty(value="该停机位可容纳的最大旅客数/最大翼展",example="")
|
||||
private BigDecimal maxPermit;
|
||||
|
||||
private BigDecimal maxflightnum; //最大可停靠航班数
|
||||
@ApiModelProperty(value="最大可停靠航班数",example="10")
|
||||
private BigDecimal maxflightnum;
|
||||
|
||||
@ApiModelProperty(value="操作标识:1-使用、0-删除标识",example="1")
|
||||
private BigDecimal operate;
|
||||
|
||||
private String pierCode; //指廊代码
|
||||
@ApiModelProperty(value="指廊代码",example="")
|
||||
private String pierCode;
|
||||
|
||||
private BigDecimal posX; //坐标位置的X值
|
||||
@ApiModelProperty(value="坐标位置的X值",example="X")
|
||||
private BigDecimal posX;
|
||||
|
||||
private BigDecimal posY; //坐标位置的Y值
|
||||
@ApiModelProperty(value="坐标位置的Y值",example="Y")
|
||||
private BigDecimal posY;
|
||||
|
||||
@ApiModelProperty(value="",example="")
|
||||
private String rstandCode;
|
||||
|
||||
private String satc; //该停机位可以停放的最大机型种类
|
||||
@ApiModelProperty(value="该停机位可以停放的最大机型种类 ",example="")
|
||||
private String satc;
|
||||
|
||||
private String standAreaCode; //停机位区域代码
|
||||
@ApiModelProperty(value="停机位区域代码",example="")
|
||||
private String standAreaCode;
|
||||
|
||||
private BigDecimal standLayouted; //资源已布局标志:1-已布局 0-未布局
|
||||
@ApiModelProperty(value="资源已布局标志:1-已布局 0-未布局",example="")
|
||||
private BigDecimal standLayouted;
|
||||
|
||||
private BigDecimal standLength; //停机位长度(单位:米)
|
||||
@ApiModelProperty(value="停机位长度(单位:米)",example="10")
|
||||
private BigDecimal standLength;
|
||||
|
||||
private String standName; //停机位名称
|
||||
@ApiModelProperty(value="停机位名称",example="停机位229")
|
||||
private String standName;
|
||||
|
||||
private BigDecimal standOrder; //停机位顺序号
|
||||
@ApiModelProperty(value="停机位顺序号",example="A2")
|
||||
private BigDecimal standOrder;
|
||||
|
||||
private BigDecimal standStatus; //停机位状态(0-可用、1-在用、2-锁定、3-禁用、4-预分...)
|
||||
@ApiModelProperty(value="停机位状态(0-可用、1-在用、2-锁定、3-禁用、4-预分...)",example="3")
|
||||
private BigDecimal standStatus;
|
||||
|
||||
//停机位类别可取值:bridge-靠桥机位、remote-远机位、near-近机位、night-过夜机位、specific-专机位...
|
||||
@ApiModelProperty(value="停机位类别可取值:bridge-靠桥机位、remote-远机位、near-近机位、night-过夜机位、specific-专机位...",example="remote")
|
||||
private String standType;
|
||||
|
||||
private BigDecimal standWidth; //停机位宽度
|
||||
@ApiModelProperty(value="停机位宽度",example="")
|
||||
private BigDecimal standWidth;
|
||||
|
||||
private String stml; //航站楼代码
|
||||
@ApiModelProperty(value="航站楼代码",example="T1")
|
||||
private String stml;
|
||||
|
||||
private String terminalAreaCode; //航站楼区域代码
|
||||
@ApiModelProperty(value="航站楼区域代码",example="")
|
||||
private String terminalAreaCode;
|
||||
|
||||
public String getStandCode() {
|
||||
return this.standCode;
|
||||
|
||||
Reference in New Issue
Block a user