|
@@ -90,8 +90,28 @@ public class BilletLiftingBill implements Serializable {
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "吊运时间")
|
|
|
private Date liftingTime;
|
|
|
- /**备注*/
|
|
|
- @Excel(name = "备注", width = 15)
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "目的地", width = 15)
|
|
|
+ @ApiModelProperty(value = "目的地")
|
|
|
+ private String destination;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "车位号", width = 15)
|
|
|
+ @ApiModelProperty(value = "车位号")
|
|
|
+ private Integer positionNum;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "车牌号或所属垛位", width = 15)
|
|
|
+ @ApiModelProperty(value = "车牌号或所属垛位")
|
|
|
+ private String plateOrStack;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "所在层数(1-20)", width = 15)
|
|
|
+ @ApiModelProperty(value = "所在层数(1-20)")
|
|
|
+ private String layer;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "所在位置(1-9)", width = 15)
|
|
|
+ @ApiModelProperty(value = "所在位置(1-9)")
|
|
|
+ private String address;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "备注", width = 15)
|
|
|
@ApiModelProperty(value = "备注")
|
|
|
private String remark;
|
|
|
}
|