分销分钱具体逻辑
This commit is contained in:
@@ -58,6 +58,23 @@ public interface TableValueConstant {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
interface DistributionFlow {
|
||||
@Getter
|
||||
enum Status {
|
||||
PENDING("pending", "待入账"),
|
||||
SUCCESS("sub", "已入账"),
|
||||
SELF_RECHARGE("self_recharge", "自助充值");
|
||||
private final String code;
|
||||
private final String msg;
|
||||
|
||||
Status(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
interface EnableConfig {
|
||||
@Getter
|
||||
|
||||
Reference in New Issue
Block a user