feat(tenant-withdraw-order): 新增租户提现订单完整功能模块

This commit is contained in:
2025-12-26 19:41:19 +08:00
parent d517682c62
commit 0c5a038595
10 changed files with 863 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ public interface ErrorCodeConstants {
ErrorCode TENANT_BALANCE_WITHDRAW_NOT_IN_DATE = new ErrorCode(1_001_202_016, "当前不在提现日期范围内");
ErrorCode TENANT_BALANCE_WITHDRAW_INSUFFICIENT = new ErrorCode(1_001_202_017, "余额不足,无法提现");
ErrorCode TENANT_BALANCE_WITHDRAW_CONFIG_NOT_EXISTS = new ErrorCode(1_001_202_018, "提现配置不存在");
ErrorCode TENANT_WITHDRAW_ORDER_NOT_EXISTS = new ErrorCode(1_001_202_019, "租户提现订单表(申请-审核-打款-完成/失败)不存在");
}