handle exception

This commit is contained in:
Cauchy
2023-10-17 16:53:34 +08:00
parent 8daf30493c
commit bdc561895e
6 changed files with 51 additions and 12 deletions

View File

@@ -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;
}