订单状态流转代码提交
This commit is contained in:
parent
d6cab8ecd7
commit
108adcd1b8
|
|
@ -66,4 +66,22 @@ public class OrderDetailDto {
|
||||||
@ApiModelProperty(value = "修改日期")
|
@ApiModelProperty(value = "修改日期")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
private Date updateTime;
|
private Date updateTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "出库人")
|
||||||
|
private String preOutboundUser;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "出库时间")
|
||||||
|
private String preOutboundTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "收货人")
|
||||||
|
private String takeOverUser;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "收货时间")
|
||||||
|
private String takeOverTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "租赁结束操作人")
|
||||||
|
private String rentOverUser;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "租赁结束时间")
|
||||||
|
private String rentOverTime;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
hh.num,
|
hh.num,
|
||||||
hh.costs,
|
hh.costs,
|
||||||
hh.rent_begin_time,
|
hh.rent_begin_time,
|
||||||
hh.rent_end_time
|
hh.rent_end_time,
|
||||||
|
hh.pre_outbound_user,
|
||||||
|
hh.pre_outbound_time,
|
||||||
|
hh.take_over_user,
|
||||||
|
hh.take_over_time,
|
||||||
|
hh.rent_over_user,
|
||||||
|
hh.rent_over_time
|
||||||
FROM
|
FROM
|
||||||
ma_order_details hh
|
ma_order_details hh
|
||||||
LEFT JOIN ma_order_info moi ON hh.order_id = moi.order_id
|
LEFT JOIN ma_order_info moi ON hh.order_id = moi.order_id
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue