|
|
|
@ -67,6 +67,24 @@ public class Order implements Serializable {
|
|
|
|
|
/**更新人*/
|
|
|
|
|
@ApiModelProperty(value = "更新人")
|
|
|
|
|
private java.lang.String updateBy;
|
|
|
|
|
/**物控员id*/
|
|
|
|
|
@Excel(name = "物控员id", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "物控员id")
|
|
|
|
|
private java.lang.String materialId;
|
|
|
|
|
/**物控员*/
|
|
|
|
|
@Excel(name = "物控员", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "物控员")
|
|
|
|
|
private java.lang.String materialClerk;
|
|
|
|
|
/**物控员备注*/
|
|
|
|
|
@Excel(name = "物控员备注", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "物控员备注")
|
|
|
|
|
private java.lang.String materialRemark;
|
|
|
|
|
/**物控审核时间*/
|
|
|
|
|
@Excel(name = "物控审核时间", width = 20, format = "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")
|
|
|
|
|
@ApiModelProperty(value = "物控审核时间")
|
|
|
|
|
private java.util.Date materialTime;
|
|
|
|
|
/**审核人id*/
|
|
|
|
|
@Excel(name = "审核人id", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "审核人id")
|
|
|
|
@ -85,6 +103,10 @@ public class Order implements Serializable {
|
|
|
|
|
@Excel(name = "审核意见", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "审核意见")
|
|
|
|
|
private java.lang.String financeRemark;
|
|
|
|
|
/**付款回执url*/
|
|
|
|
|
@Excel(name = "付款回执url", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "付款回执url")
|
|
|
|
|
private java.lang.String financeUrl;
|
|
|
|
|
/**派单人Id*/
|
|
|
|
|
@Excel(name = "派单人Id", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "派单人Id")
|
|
|
|
@ -93,6 +115,16 @@ public class Order implements Serializable {
|
|
|
|
|
@Excel(name = "派单人", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "派单人")
|
|
|
|
|
private java.lang.String dispacher;
|
|
|
|
|
/**提货时间*/
|
|
|
|
|
@Excel(name = "提货时间", width = 20, format = "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")
|
|
|
|
|
@ApiModelProperty(value = "提货时间")
|
|
|
|
|
private java.util.Date dispacherTime;
|
|
|
|
|
/**出库回执url*/
|
|
|
|
|
@Excel(name = "出库回执url", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "出库回执url")
|
|
|
|
|
private java.lang.String dispacherUrl;
|
|
|
|
|
/**物流单号*/
|
|
|
|
|
@Excel(name = "物流单号", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "物流单号")
|
|
|
|
@ -101,12 +133,6 @@ public class Order implements Serializable {
|
|
|
|
|
@Excel(name = "派单备注", width = 15)
|
|
|
|
|
@ApiModelProperty(value = "派单备注")
|
|
|
|
|
private java.lang.String dispacherRemark;
|
|
|
|
|
/**派发时间*/
|
|
|
|
|
@Excel(name = "派发时间", width = 20, format = "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")
|
|
|
|
|
@ApiModelProperty(value = "派发时间")
|
|
|
|
|
private java.util.Date dispacherTime;
|
|
|
|
|
/**状态,0:待付款 默认,1:待发货,2:已发货,3:完结,4:退换货*/
|
|
|
|
|
@Excel(name = "状态,0:待付款 默认,1:待发货,2:已发货,3:完结,4:退换货", width = 15, dicCode = "orderState")
|
|
|
|
|
@Dict(dicCode = "orderState")
|
|
|
|
|