Browse Source

01/13

master
wangpengfei 5 months ago
parent
commit
8970d6fd35
  1. 7
      src/main/java/com/yxt/warehouse/biz/warehouseoutbill/WarehouseOutBillVo.java

7
src/main/java/com/yxt/warehouse/biz/warehouseoutbill/WarehouseOutBillVo.java

@ -1,5 +1,6 @@
package com.yxt.warehouse.biz.warehouseoutbill;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ -68,6 +69,7 @@ public class WarehouseOutBillVo {
private double weightEstimation;
@ApiModelProperty("商品数量")
private double quantity;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("下单时间")
private Date orderTime;
@ApiModelProperty("订单号")
@ -78,8 +80,10 @@ public class WarehouseOutBillVo {
private String onlineOrderNumber;
@ApiModelProperty("平台")
private String platform;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("付款时间")
private Date paymentTime;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("接单时间")
private Date orderAcceptanceTime;
@ApiModelProperty("拣选区域")
@ -90,14 +94,17 @@ public class WarehouseOutBillVo {
private String brand;
@ApiModelProperty("波次")
private String waveTimes;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("超时时间")
private Date timeoutPeriod;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("到货时间")
private Date deliveryTime;
@ApiModelProperty("体积")
private double volume;
@ApiModelProperty("标记")
private String sign;
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty("最晚发货时间")
private Date latestDeliveryTime;
@ApiModelProperty("创建组织sid")

Loading…
Cancel
Save