feat(user-purchaserecords): 新增用户内购记录管理功能

This commit is contained in:
2025-12-24 15:36:02 +08:00
parent bcecb8b3e9
commit 8e551f6bb2
10 changed files with 616 additions and 0 deletions

View File

@@ -77,6 +77,8 @@ public interface ErrorCodeConstants {
ErrorCode THEME_PURCHASE_NOT_EXISTS = new ErrorCode(1_001_202_003, "皮肤购买记录表(积分支付)不存在");
ErrorCode CHARACTER_NOT_EXISTS = new ErrorCode(1_001_202_004, "键盘人设不存在");
ErrorCode USER_WALLET_NOT_EXISTS = new ErrorCode(1_001_202_005, "用户钱包不存在");
ErrorCode USER_PURCHASE_RECORDS_NOT_EXISTS = new ErrorCode(1_001_202_006, "用户内购记录不存在");
}