handle exception
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.peanut.modules.book.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 快递下单响应 Value Object
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/17
|
||||
*/
|
||||
@Data
|
||||
public class ExpressOrderResponseVo {
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private String EBusinessID;
|
||||
/**
|
||||
* 返回模板
|
||||
*/
|
||||
private String PrintTemplate;
|
||||
/**
|
||||
* 是否成功
|
||||
*/
|
||||
private boolean Success;
|
||||
/**
|
||||
* 结果响应编码
|
||||
*/
|
||||
private String ResultCode;
|
||||
/**
|
||||
* 原因
|
||||
*/
|
||||
private String Reason;
|
||||
}
|
||||
Reference in New Issue
Block a user