订单字段

master
YIN 2024-12-26 09:16:36 +08:00
parent 7ba947a94b
commit 0726b31669
2 changed files with 15 additions and 0 deletions

View File

@ -259,6 +259,10 @@ public class BizOrder
@Excel(name = "到达纬度") @Excel(name = "到达纬度")
private BigDecimal arriveLat; private BigDecimal arriveLat;
/** 状态 */
@Excel(name = "运单状态")
private Integer subStatus;
/** 创建时间 */ /** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "创建时间") @Excel(name = "创建时间")

View File

@ -50,4 +50,15 @@ public class BizOrderSub
@Excel(name = "高", readConverterExp = "米=") @Excel(name = "高", readConverterExp = "米=")
private BigDecimal height; private BigDecimal height;
/** 物品类型 */
@Excel(name = "物品类型")
private String goodsType;
/** 物品名称 */
@Excel(name = "物品名称")
private String goodsName;
/** 订单费用 */
@Excel(name = "订单费用")
private BigDecimal orderFee;
} }