转账到零钱参数完善

This commit is contained in:
张松
2025-10-29 17:03:00 +08:00
parent 0c3d5a0fcc
commit e19457de26
5 changed files with 54 additions and 4 deletions

View File

@@ -64,10 +64,11 @@ public interface TableValueConstant {
@Getter
enum Status {
PENDING("pending", "提现中"),
REFUND("refund", "提现中"),
SUB("sub", "系统扣减"),
OPEN("open", "分销员购买"),
FINISH("finish", "已提现"),
SELF_RECHARGE("self_recharge", "自助充值");
SELF_RECHARGE("self_recharge", "自助充值"), FAIL("fail", "失败");
private final String code;
private final String msg;