代码质量改进:修复架构违规、完善文档注释和清理冗余代码

- 修复 health.go handler 直接操作响应的架构违规问题
- 为 model 字段添加 GORM comment 标签(account_role、base、role_permission)
- 为 handler、service、store 包添加包级文档注释
- 清理 customer service 和 personal_customer handler 中注释掉的代码

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-12 16:28:48 +08:00
parent 590614aecc
commit 4507de577b
17 changed files with 50 additions and 41 deletions

View File

@@ -1,3 +1,5 @@
// Package postgres 提供基于 PostgreSQL 的数据访问层实现
// 包含所有模型的 Store 接口实现,使用 GORM 进行数据库操作
package postgres
import (