Files
junhong_cmp_fiber/openspec/changes/archive/2026-01-21-add-enterprise-management/proposal.md
huang 91c9bbfeb8
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 4m35s
feat: 实现账号与佣金管理模块
新增功能:
- 店铺佣金查询:店铺佣金统计、店铺佣金记录列表、店铺提现记录
- 佣金提现审批:提现申请列表、审批通过、审批拒绝
- 提现配置管理:配置列表、新增配置、获取当前生效配置
- 企业管理:企业列表、创建、更新、删除、获取详情
- 企业卡授权:授权列表、批量授权、批量取消授权、统计
- 客户账号管理:账号列表、创建、更新状态、重置密码
- 我的佣金:佣金统计、佣金记录、提现申请、提现记录

数据库变更:
- 扩展 tb_commission_withdrawal_request 新增提现单号等字段
- 扩展 tb_account 新增 is_primary 字段
- 扩展 tb_commission_record 新增 shop_id、balance_after
- 扩展 tb_commission_withdrawal_setting 新增每日提现次数限制
- 扩展 tb_iot_card、tb_device 新增 shop_id 冗余字段
- 新建 tb_enterprise_card_authorization 企业卡授权表
- 新建 tb_asset_allocation_record 资产分配记录表
- 数据迁移:owner_type 枚举值 agent 统一为 shop

测试:
- 新增 7 个单元测试文件覆盖各服务
- 修复集成测试 Redis 依赖问题
2026-01-21 18:20:44 +08:00

73 lines
2.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Change: 企业客户管理模块基础CRUD
## Why
平台和代理商需要管理企业客户:
1. 新增企业客户,同时自动创建企业账号
2. 查询企业客户列表
3. 编辑企业信息
4. 启用/禁用企业(同步禁用账号)
5. 重置企业账号密码
这是账号管理-企业客户管理模块的基础功能。
## What Changes
### 新增 API 接口
| 方法 | 路径 | 说明 |
|------|------|------|
| POST | `/api/admin/enterprises` | 新增企业(含自动创建账号) |
| GET | `/api/admin/enterprises` | 企业列表 |
| PUT | `/api/admin/enterprises/:id` | 编辑企业 |
| PUT | `/api/admin/enterprises/:id/status` | 启用/禁用 |
| PUT | `/api/admin/enterprises/:id/password` | 修改密码 |
### 技术实现
- 新增 Handler`internal/handler/admin/enterprise.go`
- 新增 Service`internal/service/enterprise/service.go`
- 新增 DTO`internal/model/dto/enterprise_dto.go`
- 扩展 Store`internal/store/postgres/enterprise_store.go`
### 业务逻辑
**新增企业**
1. 验证企业编号唯一性
2. 验证 `login_phone` 在账号表中不存在
3. 如果指定 `owner_shop_id`,验证店铺存在且有权限
4. 开启事务:
- 创建企业记录
- 创建企业账号UserType=4, EnterpriseID=企业ID
5. 提交事务
**禁用企业**
1. 更新企业状态
2. 同步禁用企业关联的账号
## Impact
### 影响的规范
- **新增 Capability**`enterprise-management`
### 影响的代码
**新增文件**(约 400 行):
- `internal/handler/admin/enterprise.go`~120 行)
- `internal/service/enterprise/service.go`~200 行)
- `internal/model/dto/enterprise_dto.go`~80 行)
### 兼容性
- ✅ 向后兼容:新增 API不影响现有功能
## Dependencies
- 依赖提案:`add-commission-model-changes`
- 依赖现有模型:`Enterprise``Account``Shop`
## Testing Strategy
1. **单元测试**:企业创建逻辑、状态同步逻辑
2. **集成测试**:完整 CRUD 流程
3. **事务测试**:创建企业+账号的原子性