在项目宪章中新增第九条原则"数据库设计原则",明确禁止使用数据库外键约束和ORM关联标签。 主要变更: - 新增原则IX:数据库设计原则(Database Design Principles) - 强制要求:数据库表不得使用外键约束 - 强制要求:GORM模型不得使用ORM关联标签(foreignKey、hasMany等) - 强制要求:表关系必须通过ID字段手动维护 - 强制要求:关联数据查询必须显式编写,避免ORM魔法 - 强制要求:时间字段由GORM处理,不使用数据库触发器 设计理念: - 提升业务逻辑灵活性(无数据库约束限制) - 优化高并发性能(无外键检查开销) - 增强代码可读性(显式查询,无隐式预加载) - 简化数据库架构和迁移流程 - 支持分布式和微服务场景 版本升级:2.3.0 → 2.4.0(MINOR)
44 lines
1.5 KiB
Go
44 lines
1.5 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// CreateOrderRequest 创建订单请求
|
|
type CreateOrderRequest struct {
|
|
OrderID string `json:"order_id" validate:"required,min=10,max=50"`
|
|
UserID uint `json:"user_id" validate:"required,gt=0"`
|
|
Amount int64 `json:"amount" validate:"required,gte=0"`
|
|
Remark string `json:"remark" validate:"omitempty,max=500"`
|
|
}
|
|
|
|
// UpdateOrderRequest 更新订单请求
|
|
type UpdateOrderRequest struct {
|
|
Status *string `json:"status" validate:"omitempty,oneof=pending paid processing completed cancelled"`
|
|
Remark *string `json:"remark" validate:"omitempty,max=500"`
|
|
}
|
|
|
|
// OrderResponse 订单响应
|
|
type OrderResponse struct {
|
|
ID uint `json:"id"`
|
|
OrderID string `json:"order_id"`
|
|
UserID uint `json:"user_id"`
|
|
Amount int64 `json:"amount"`
|
|
Status string `json:"status"`
|
|
Remark string `json:"remark,omitempty"`
|
|
PaidAt *time.Time `json:"paid_at,omitempty"`
|
|
CompletedAt *time.Time `json:"completed_at,omitempty"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
User *UserResponse `json:"user,omitempty"` // 可选的用户信息
|
|
}
|
|
|
|
// ListOrdersResponse 订单列表响应
|
|
type ListOrdersResponse struct {
|
|
Orders []OrderResponse `json:"orders"`
|
|
Page int `json:"page"`
|
|
PageSize int `json:"page_size"`
|
|
Total int64 `json:"total"`
|
|
TotalPages int `json:"total_pages"`
|
|
}
|