|
@@ -103,4 +103,29 @@ public class AdminAircraftPosition implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "是否能到岗 1和null可以到岗 2不可以到岗 ")
|
|
|
private Integer isAttendance;
|
|
|
+
|
|
|
+ @Excel(name = "预计开始占用时间", width = 15)
|
|
|
+ @ApiModelProperty(value = "预计开始占用时间")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date estr;
|
|
|
+
|
|
|
+ @Excel(name = "预计结束占用时间", width = 15)
|
|
|
+ @ApiModelProperty(value = "预计结束占用时间")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date eend;
|
|
|
+
|
|
|
+ @Excel(name = "实际开始占用时间", width = 15)
|
|
|
+ @ApiModelProperty(value = "预计结束占用时间")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date rstr;
|
|
|
+
|
|
|
+ @Excel(name = "实际结束占用时间", width = 15)
|
|
|
+ @ApiModelProperty(value = "预计结束占用时间")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date rend;
|
|
|
+
|
|
|
}
|