|
@@ -4,9 +4,8 @@ import java.io.Serializable;
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
@@ -51,6 +50,7 @@ public class AdminAircraftPosition implements Serializable {
|
|
/**停留飞机号*/
|
|
/**停留飞机号*/
|
|
@Excel(name = "停留飞机号", width = 15)
|
|
@Excel(name = "停留飞机号", width = 15)
|
|
@ApiModelProperty(value = "停留飞机号")
|
|
@ApiModelProperty(value = "停留飞机号")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private String aircraftNum;
|
|
private String aircraftNum;
|
|
|
|
|
|
@Excel(name = "落地时间", width = 15)
|
|
@Excel(name = "落地时间", width = 15)
|
|
@@ -61,9 +61,11 @@ public class AdminAircraftPosition implements Serializable {
|
|
/**航班号*/
|
|
/**航班号*/
|
|
@Excel(name = "航班号", width = 15)
|
|
@Excel(name = "航班号", width = 15)
|
|
@ApiModelProperty(value = "航班号")
|
|
@ApiModelProperty(value = "航班号")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private String flightNum;
|
|
private String flightNum;
|
|
@Excel(name = "航班唯一编号", width = 15)
|
|
@Excel(name = "航班唯一编号", width = 15)
|
|
@ApiModelProperty(value = "航班唯一编号")
|
|
@ApiModelProperty(value = "航班唯一编号")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private String flightSole;
|
|
private String flightSole;
|
|
|
|
|
|
@Excel(name = "排序", width = 15)
|
|
@Excel(name = "排序", width = 15)
|
|
@@ -91,6 +93,7 @@ public class AdminAircraftPosition implements Serializable {
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
|
|
|
|
@ApiModelProperty(value = "关联航班ID(起飞用)")
|
|
@ApiModelProperty(value = "关联航班ID(起飞用)")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private String flightAfid;
|
|
private String flightAfid;
|
|
|
|
|
|
@ApiModelProperty(value = "预计落地时间")
|
|
@ApiModelProperty(value = "预计落地时间")
|
|
@@ -108,24 +111,28 @@ public class AdminAircraftPosition implements Serializable {
|
|
@ApiModelProperty(value = "预计开始占用时间")
|
|
@ApiModelProperty(value = "预计开始占用时间")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private Date estr;
|
|
private Date estr;
|
|
|
|
|
|
@Excel(name = "预计结束占用时间", width = 15)
|
|
@Excel(name = "预计结束占用时间", width = 15)
|
|
@ApiModelProperty(value = "预计结束占用时间")
|
|
@ApiModelProperty(value = "预计结束占用时间")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private Date eend;
|
|
private Date eend;
|
|
|
|
|
|
@Excel(name = "实际开始占用时间", width = 15)
|
|
@Excel(name = "实际开始占用时间", width = 15)
|
|
@ApiModelProperty(value = "预计结束占用时间")
|
|
@ApiModelProperty(value = "预计结束占用时间")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private Date rstr;
|
|
private Date rstr;
|
|
|
|
|
|
@Excel(name = "实际结束占用时间", width = 15)
|
|
@Excel(name = "实际结束占用时间", width = 15)
|
|
@ApiModelProperty(value = "预计结束占用时间")
|
|
@ApiModelProperty(value = "预计结束占用时间")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
private Date rend;
|
|
private Date rend;
|
|
|
|
|
|
}
|
|
}
|