[init]创建能辉erp 系统

master
NH-LHG 2 years ago
parent 966ad3db55
commit 7e9f50e65f

@ -64,6 +64,10 @@ public class OrderPage {
/**更新人*/
@ApiModelProperty(value = "更新人")
private java.lang.String updateBy;
/**审核人id*/
@Excel(name = "审核人id", width = 15)
@ApiModelProperty(value = "审核人id")
private java.lang.String financeId;
/**审核人*/
@Excel(name = "审核人", width = 15)
@ApiModelProperty(value = "审核人")
@ -74,6 +78,10 @@ public class OrderPage {
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "审核时间")
private java.util.Date financeTime;
/**派单人Id*/
@Excel(name = "派单人Id", width = 15)
@ApiModelProperty(value = "派单人Id")
private java.lang.String dispacherId;
/**审核意见*/
@Excel(name = "审核意见", width = 15)
@ApiModelProperty(value = "审核意见")
@ -82,12 +90,21 @@ public class OrderPage {
@Excel(name = "派单人", width = 15)
@ApiModelProperty(value = "派单人")
private java.lang.String dispacher;
/**派单备注*/
@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;
/**物流单号*/
@Excel(name = "物流单号", width = 15)
@ApiModelProperty(value = "物流单号")
private java.lang.String logisticsId;
/**状态,0:待付款 默认1待发货2已发货3完结4退换货*/
@Excel(name = "状态,0:待付款 默认1待发货2已发货3完结4退换货", width = 15, dicCode = "orderState")
@Dict(dicCode = "orderState")

Loading…
Cancel
Save