express order finished

This commit is contained in:
Cauchy
2023-10-17 17:22:08 +08:00
parent bdc561895e
commit 113243e918
8 changed files with 77 additions and 6 deletions

View File

@@ -29,4 +29,8 @@ public class ExpressOrderResponseVo {
* 原因
*/
private String Reason;
/**
* 订单
*/
private ExpressResponseOrderVo Order;
}

View File

@@ -0,0 +1,20 @@
package com.peanut.modules.book.vo;
import lombok.Data;
/**
* @Description: 快递查询请求 Value Object
* @Author: Cauchy
* @CreateTime: 2023/10/17
*/
@Data
public class ExpressQueryRequestVo {
/**
* 快递编码
*/
private String ShipperCode;
/**
* 快递单号
*/
private String LogisticCode;
}

View File

@@ -0,0 +1,12 @@
package com.peanut.modules.book.vo;
import lombok.Data;
/**
* @Description: TODO
* @Author: Cauchy
* @CreateTime: 2023/10/17
*/
@Data
public class ExpressQueryResponseVo {
}

View File

@@ -0,0 +1,16 @@
package com.peanut.modules.book.vo;
import lombok.Data;
/**
* @Description: TODO
* @Author: Cauchy
* @CreateTime: 2023/10/17
*/
@Data
public class ExpressResponseOrderVo {
/**
* 快递单号
*/
private String LogisticCode;
}