express refactor
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package com.peanut.modules.book.vo;
|
||||
|
||||
import com.kuaidi100.sdk.contant.PrintType;
|
||||
import com.kuaidi100.sdk.request.ManInfo;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description: 快递请求 Value Object
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/16
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class ExpressOrderRequestVo {
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
private String OrderCode;
|
||||
/**
|
||||
* 快递公司编码
|
||||
*/
|
||||
private String ShipperCode;
|
||||
/**
|
||||
* 支付类型 1 - 现付 2 - 到付 3 - 月结 4 - 第三方付
|
||||
*/
|
||||
private int payType;
|
||||
/**
|
||||
* 快递公司业务类型
|
||||
*/
|
||||
private int ExpType;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user