Commit 5fc62245 authored by 李健华's avatar 李健华

添加交易凭证导入导出枚举

parent 29e4e994
package cn.quantgroup.customer.rest.enums;
public enum VoucherExportStatus {
INIT(0, "初始状态"),
EXPORT_SUCCESS(1, "成功"),
EXPORT_FAIL(2, "失败"),
EXPORT_WARN(3, "物流信息异常"),
;
private Integer code;
private String message;
public String getMessage() {
return message;
}
public Integer getCode() {
return code;
}
VoucherExportStatus(Integer code, String message) {
this.message = message;
this.code = code;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment