分账提现接口

This commit is contained in:
张松
2025-10-27 20:38:06 +08:00
parent 078b8d1c5d
commit d8171cfb75
5 changed files with 58 additions and 2 deletions

View File

@@ -60,6 +60,25 @@ public interface TableValueConstant {
}
interface DistributionWithdrawFlow {
@Getter
enum Status {
PENDING("pending", "提现中"),
SUB("sub", "系统扣减"),
OPEN("open", "分销员购买"),
FINISH("finish", "已提现"),
SELF_RECHARGE("self_recharge", "自助充值");
private final String code;
private final String msg;
Status(String code, String msg) {
this.code = code;
this.msg = msg;
}
}
}
interface DistributionFlow {
@Getter
enum Status {