|
|
|
@ -17,6 +17,7 @@
|
|
|
|
|
package com.logpm.distribution.vo; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
|
import lombok.Data; |
|
|
|
@ -167,4 +168,37 @@ public class DistributionParcelListVO extends DistributionParcelListEntity {
|
|
|
|
|
private String noteNumber; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 时间模糊查询需要的值 |
|
|
|
|
*/ |
|
|
|
|
@ApiModelProperty(value = "入库开始时间") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
private String startWarehouseEntryTimeEnd; |
|
|
|
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "入库结束时间") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String lastWarehouseEntryTimeEnd; |
|
|
|
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "装车开始时间") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String startLoadingTime; |
|
|
|
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "装车结束时间") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String lastLoadingTime; |
|
|
|
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "签收开始时间") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String startSigningTime; |
|
|
|
|
|
|
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "签收结束时间") |
|
|
|
|
@TableField(exist = false) |
|
|
|
|
private String lastSigningTime; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|