1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

添加 运单号 和 发货备注 字段

This commit is contained in:
2023-04-17 22:57:21 +08:00
parent b707cb0d49
commit 3e822ba3a0
3 changed files with 6 additions and 0 deletions

View File

@@ -20,4 +20,6 @@ public class Order {
private LocalDateTime cancelDate;
private LocalDateTime shipDate;
private LocalDateTime deliverDate;
private String expressId;
private String comment;
}

View File

@@ -30,6 +30,8 @@ public class OrderVO implements Serializable {
private String cancelDate;
private String shipDate;
private String deliverDate;
private String expressId;
private String comment;
public static OrderVO convertFrom(Order order) {
if (order == null) {