hz-zhhq-app-service/greenH5modul/.svn/pristine/b9/b9dc8b7d1961d94e1463c597fe5...

28 lines
537 B
Plaintext
Raw Normal View History

2025-01-21 13:12:35 +08:00
package com.nationalelectric.greenH5.enums;
public enum PayStatus {
PAY_STATUS_NO("0","未支付"),
PAY_STATUS_SUCCESS("1","支付成功"),
PAY_STATUS_DOING("2","支付中"),
;
private String name;
private String value;
private PayStatus(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}