分销分钱具体逻辑

This commit is contained in:
张松
2025-10-27 16:00:58 +08:00
parent 39984116d0
commit bf083f698e
14 changed files with 387 additions and 14 deletions

View File

@@ -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