分销后台相关接口 现金充值 记录明细
This commit is contained in:
@@ -23,6 +23,41 @@ public interface TableValueConstant {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
interface DistributionConfig {
|
||||
@Getter
|
||||
enum OpenType {
|
||||
PAY("PAY", "支付购买"),
|
||||
COST("COST", "消费增积分");
|
||||
private final String code;
|
||||
private final String msg;
|
||||
|
||||
OpenType(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
interface DistributionAmountFlow {
|
||||
@Getter
|
||||
enum Type {
|
||||
MANUAL_RECHARGE("manual_recharge", "手动充值"),
|
||||
SUB("sub", "系统扣减"),
|
||||
MANUAL_SUB("manual_sub", "手动扣减"),
|
||||
SELF_RECHARGE("self_recharge", "自助充值");
|
||||
private final String code;
|
||||
private final String msg;
|
||||
|
||||
Type(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
interface EnableConfig {
|
||||
@Getter
|
||||
enum Type {
|
||||
|
||||
Reference in New Issue
Block a user