apzl_leasing/src_tenwa/com/tenwa/cgbbank/enums/CGB0032LogStatusEnum.java
2023-07-25 10:22:56 +08:00

29 lines
462 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.tenwa.cgbbank.enums;
/**
* 广发0032接口的网银处理状态
*
*/
public enum CGB0032LogStatusEnum {
S0(0, "处理中"),
S1(1,"处理成功"),
S2(2,"处理失败");
private Integer code;
private String desc;
CGB0032LogStatusEnum(Integer code, String desc) {
this.code = code;
this.desc = desc;
}
public Integer getCode() {
return code;
}
public String getDesc() {
return desc;
}
}