Commit Graph

236 Commits

Author SHA1 Message Date
d87eac7d94 feat(middlewares): 添加认证中间件以处理JWT授权 2025-12-30 18:06:16 +08:00
2c633dac0f feat: 添加用户优惠券列表接口及相关数据结构 2025-12-30 17:53:27 +08:00
dbfb08ed37 feat: add coupon support to orders and create user_coupons model
- Added CouponID field to Order model to track used coupons.
- Updated order query generation to include CouponID.
- Introduced UserCoupon model to manage user coupon associations.
- Implemented query methods for UserCoupon to facilitate CRUD operations.
- Updated query context and default query setup to include UserCoupon.
2025-12-30 17:28:21 +08:00
69d750800c feat(llm): update 2025-12-30 17:20:07 +08:00
b969218208 feat(storage): 实现本地存储功能,包括文件上传和下载接口 2025-12-30 17:14:03 +08:00
452cdc3f4f feat(llm): update 2025-12-30 15:37:50 +08:00
ee1acae3ed feat: 实现平台抽成、提现审批、异步任务集成及安全审计功能 2025-12-30 14:54:19 +08:00
5e8dbec806 feat(llm): update 2025-12-30 14:52:58 +08:00
7bd36f7cc5 feat(llm): update 2025-12-30 14:50:59 +08:00
f0e3ede69b feat(llm): update 2025-12-30 14:43:26 +08:00
5cf2295f91 feat: Implement notification service and integrate with user interactions
- Added notification service to handle sending and listing notifications.
- Integrated notification sending on user follow and order payment events.
- Updated user service to include fetching followed tenants.
- Enhanced content service to manage access control for content assets.
- Implemented logic for listing content topics based on genre.
- Updated creator service to manage content updates and pricing.
- Improved order service to include detailed order information and notifications.
- Added tests for notification CRUD operations and order details.
2025-12-30 09:57:12 +08:00
9ef9642965 feat: 重构内容服务,优化数据预加载和用户互动功能;增加租户关注功能及相关测试用例 2025-12-30 09:17:13 +08:00
33e1921e17 Refactor super module: Move HTTP handlers to new super/v1 package
- Deleted old super.go file and moved all related HTTP handlers to new package structure under backend/app/http/super/v1.
- Updated service imports in super.go and super_test.go to reflect new DTO paths.
- Created new auth, contents, orders, tenants, and users handlers with corresponding routes and methods.
- Added new DTO definitions for authentication and content management in the super/v1/dto directory.
- Implemented new migration for content_access table and created model for it.
2025-12-29 17:17:07 +08:00
bdf20fb0c6 feat: 更新路由参数约定,要求数字ID路径参数在@Router注解中显式声明类型以确保正确匹配 2025-12-29 15:44:25 +08:00
9d598e7f9b feat: 重构内容和订单列表接口,使用过滤器结构体简化参数传递;更新相关服务和测试用例 2025-12-29 15:41:48 +08:00
fba77afec1 feat: 重构内容列表接口,使用过滤器结构体简化参数传递;更新相关服务和测试用例 2025-12-29 15:04:55 +08:00
8c4bc55f45 feat: update app errors 2025-12-29 14:54:05 +08:00
8fa3d18a9c Refactor order and tenant ledger models to use consts for Currency and Type fields; add new UserStatus values; implement comprehensive test cases for content, creator, order, super, and wallet services. 2025-12-29 14:21:20 +08:00
d648a1e45b feat: 更新用户、订单、媒体资产和租户模型,添加新的字段类型和结构体 2025-12-29 12:01:22 +08:00
0d0aee87b1 feat(llm): update 2025-12-29 12:01:08 +08:00
b78f1e1c84 feat(user): implement OTP login, user creation, and profile management
- Added SendOTP method for simulating OTP sending.
- Implemented LoginWithOTP method for user login/registration via OTP, including user creation if not found.
- Added Me method to retrieve current user information.
- Implemented Update method for updating user profile details.
- Added RealName method for real-name verification.
- Implemented GetNotifications method to fetch user notifications.
- Created user_test.go for comprehensive unit tests covering login, profile retrieval, updates, real-name verification, and notifications.
- Updated database models to use appropriate consts for fields like gender, status, and roles.
2025-12-29 10:55:13 +08:00
bc2064639f feat(llm): update 2025-12-29 10:54:43 +08:00
93a51a376c feat(llm): 更新开发规则,添加关于DTO和分页响应的JSON标签要求 2025-12-29 10:25:35 +08:00
60ff49d4c8 feat: 统一字段命名风格,使用下划线格式替代驼峰式命名 2025-12-29 10:20:53 +08:00
d482905157 feat: 更新内容相关接口,使用统一的分页响应结构 2025-12-29 10:14:47 +08:00
62262bbac2 feat: 更新数据库迁移脚本,添加用户、租户及内容相关表的详细注释 2025-12-29 09:56:37 +08:00
ad52371028 feat: implement new structure 2025-12-29 09:30:49 +08:00
503b15aab7 reset backend 2025-12-27 19:49:11 +08:00
4bf23e1f4a feat: tenant management api paths 2025-12-25 14:55:02 +08:00
6542c71ec0 feat: tenant content publish 2025-12-25 14:29:16 +08:00
a66c0d9b90 chore: enforce gen transaction rule 2025-12-25 14:08:09 +08:00
1a357177fd refactor: move tenant apply db to service 2025-12-25 11:27:14 +08:00
c010710b32 fix: tenant apply gorm panic 2025-12-25 11:20:56 +08:00
03117b827b feat: portal tenant apply flow 2025-12-25 11:12:11 +08:00
0c7d4ef0ea feat: portal auth login and password reset 2025-12-25 09:58:34 +08:00
fd9e54e9f4 feat: 添加用户注册功能,包括表单验证和路由注册 2025-12-24 22:46:50 +08:00
87f569cc6a feat: add tenant admin invite management, ledger overview, order details, and order management features
- Implemented Invite management with creation, searching, and disabling functionalities.
- Added Ledger overview for financial transactions with filtering options.
- Developed Order Detail view for individual order insights and refund capabilities.
- Created Orders management page with search, reset, and pagination features.
- Enhanced user experience with toast notifications for actions and error handling.
2025-12-24 19:41:44 +08:00
d60c1e9312 feat: add content management feature for superadmin
- Implemented API endpoint for fetching content list with filtering, sorting, and pagination.
- Added DTOs for content items and tenant information.
- Created frontend components for content management, including search and data table functionalities.
- Updated routing to include content management page.
- Enhanced the superadmin menu to navigate to the new content management section.
- Included necessary styles and scripts for the new content management interface.
2025-12-24 16:24:50 +08:00
568f5cda43 feat: add tenant content management features for superadmin
- Implemented API endpoints for listing tenant contents and updating content status.
- Added Swagger documentation for new endpoints:
  - GET /super/v1/tenants/{tenantID}/contents
  - PATCH /super/v1/tenants/{tenantID}/contents/{contentID}/status
- Created DTOs for content item and status update form.
- Enhanced frontend to support content management in the tenant detail page.
- Added search and filter functionalities for tenant contents.
- Implemented unpublish functionality with confirmation dialog.
- Updated service layer to handle new content management logic.
2025-12-24 16:10:07 +08:00
8fa321dbf6 feat: add TenantDetail and UserDetail views with comprehensive functionality
- Implemented TenantDetail.vue to display tenant information, manage tenant status, and handle tenant renewals.
- Added user management features in UserDetail.vue, including user status updates and role management.
- Integrated data loading for tenant users and orders in TenantDetail.vue.
- Included search and pagination functionalities for owned and joined tenants in UserDetail.vue.
- Enhanced user experience with toast notifications for success and error messages.
2025-12-24 15:10:49 +08:00
40776b78e2 feat: 更新路由参数格式,增强路由一致性和可读性 2025-12-24 11:02:05 +08:00
469d691a75 update 2025-12-24 10:56:30 +08:00
63107ca23f feat: 添加订单提供者,优化路由注册,增强用户角色管理 2025-12-24 10:45:36 +08:00
1e1132718c feat: 添加订单详情和退款功能,更新用户角色管理,增强超级管理员鉴权 2025-12-24 09:48:31 +08:00
fcbc6bd394 feat: 添加订单管理功能,支持跨租户分页查询,优化订单列表展示及查询条件 2025-12-24 09:30:12 +08:00
3e8a02d549 feat: 添加用户租户管理功能,优化用户列表和租户信息展示,增强查询过滤条件 2025-12-24 00:02:44 +08:00
26e4279f1e feat: 更新租户和订单相关功能,添加租户成员列表接口,优化数据处理和前端展示 2025-12-23 23:38:05 +08:00
bcb8c822f1 feat: 添加租户创建功能,支持设置管理员及有效期,新增订单统计接口 2025-12-23 23:03:49 +08:00
3db41f4b0c feat: 添加跳过 JWT 认证和成员验证的逻辑,优化中间件处理 2025-12-23 14:58:08 +08:00
780a7b1ed1 feat: 添加按 biz_ref_type 和 order_id 过滤的管理员账本页面测试用例 2025-12-23 13:25:58 +08:00