核心功能: - 实现 7 级店铺层级体系(Shop 模型 + 层级校验) - 实现企业管理模型(Enterprise 模型) - 实现个人客户管理模型(PersonalCustomer 模型) - 重构 Account 模型关联关系(基于 EnterpriseID 而非 ParentID) - 完整的 Store 层和 Service 层实现 - 递归查询下级店铺功能(含 Redis 缓存) - 全面的单元测试覆盖(Shop/Enterprise/PersonalCustomer Store + Shop Service) 技术要点: - 显式指定所有 GORM 模型的数据库字段名(column: 标签) - 统一的字段命名规范(数据库用 snake_case,Go 用 PascalCase) - 完整的中文字段注释和业务逻辑说明 - 100% 测试覆盖(20+ 测试用例全部通过) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
50 lines
2.5 KiB
Go
50 lines
2.5 KiB
Go
package model
|
|
|
|
// CreateEnterpriseRequest 创建企业请求
|
|
type CreateEnterpriseRequest struct {
|
|
EnterpriseName string `json:"enterprise_name" validate:"required"` // 企业名称
|
|
EnterpriseCode string `json:"enterprise_code"` // 企业编号
|
|
OwnerShopID *uint `json:"owner_shop_id"` // 归属店铺ID
|
|
LegalPerson string `json:"legal_person"` // 法人代表
|
|
ContactName string `json:"contact_name"` // 联系人姓名
|
|
ContactPhone string `json:"contact_phone"` // 联系人电话
|
|
BusinessLicense string `json:"business_license"` // 营业执照号
|
|
Province string `json:"province"` // 省份
|
|
City string `json:"city"` // 城市
|
|
District string `json:"district"` // 区县
|
|
Address string `json:"address"` // 详细地址
|
|
}
|
|
|
|
// UpdateEnterpriseRequest 更新企业请求
|
|
type UpdateEnterpriseRequest struct {
|
|
EnterpriseName *string `json:"enterprise_name"` // 企业名称
|
|
EnterpriseCode *string `json:"enterprise_code"` // 企业编号
|
|
LegalPerson *string `json:"legal_person"` // 法人代表
|
|
ContactName *string `json:"contact_name"` // 联系人姓名
|
|
ContactPhone *string `json:"contact_phone"` // 联系人电话
|
|
BusinessLicense *string `json:"business_license"` // 营业执照号
|
|
Province *string `json:"province"` // 省份
|
|
City *string `json:"city"` // 城市
|
|
District *string `json:"district"` // 区县
|
|
Address *string `json:"address"` // 详细地址
|
|
}
|
|
|
|
// EnterpriseResponse 企业响应
|
|
type EnterpriseResponse struct {
|
|
ID uint `json:"id"`
|
|
EnterpriseName string `json:"enterprise_name"`
|
|
EnterpriseCode string `json:"enterprise_code"`
|
|
OwnerShopID *uint `json:"owner_shop_id,omitempty"`
|
|
LegalPerson string `json:"legal_person"`
|
|
ContactName string `json:"contact_name"`
|
|
ContactPhone string `json:"contact_phone"`
|
|
BusinessLicense string `json:"business_license"`
|
|
Province string `json:"province"`
|
|
City string `json:"city"`
|
|
District string `json:"district"`
|
|
Address string `json:"address"`
|
|
Status int `json:"status"`
|
|
CreatedAt string `json:"created_at"`
|
|
UpdatedAt string `json:"updated_at"`
|
|
}
|