【同步】BOOT 和 CLOUD 的功能

This commit is contained in:
YunaiV
2024-09-07 12:46:56 +08:00
parent 1dea81fd0c
commit d2f0c00d8f
72 changed files with 1690 additions and 999 deletions

View File

@@ -18,9 +18,8 @@ public enum PayWalletBizTypeEnum implements IntArrayValuable {
RECHARGE(1, "充值"),
RECHARGE_REFUND(2, "充值退款"),
PAYMENT(3, "支付"),
PAYMENT_REFUND(4, "支付退款");
// TODO 后续增加
PAYMENT_REFUND(4, "支付退款"),
UPDATE_BALANCE(5, "更新余额");
/**
* 业务分类
@@ -35,6 +34,6 @@ public enum PayWalletBizTypeEnum implements IntArrayValuable {
@Override
public int[] array() {
return ARRAYS;
return ARRAYS;
}
}