- service/dto/controller 各拆 18 文件,一表一文件;跨表编排留在 outfit_generation_task_service - controller 共享 struct(outfit/member)保 /outfit/*、/member/* 前缀,路由零漂移(28 路径 diff 为空) - 修复 4 个缺失 g.Meta handler:/user/profile、/avatar/get、/body-measurement/get、/hairstyle/list 从 ALL 收敛为 GET - 工具包并入 agent/ 单包(weather/imagegen/avatar/scoring),NewCache 泛化 NewTTLCache - 虎皮椒支付适配器内联 service/payment_order_service.go,member 服务拆 4 表文件 - 冒烟 21 路径全绿 + 客户端 dart analyze 零 error
27 lines
663 B
Go
27 lines
663 B
Go
package dto
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
type OutfitGenerateReq struct {
|
|
g.Meta `path:"/generate" method:"post" tags:"穿搭" summary:"生成穿搭方案"`
|
|
StartDate string `v:"required|date" json:"start_date"`
|
|
EndDate string `v:"required|date" json:"end_date"`
|
|
Location string `v:"required" json:"location"`
|
|
}
|
|
|
|
type OutfitGenerateRes struct {
|
|
TaskId int64 `json:"task_id"`
|
|
}
|
|
|
|
type OutfitTaskStatusReq struct {
|
|
g.Meta `path:"/task/status" method:"get" tags:"穿搭" summary:"任务状态"`
|
|
TaskId int64 `v:"required" json:"task_id"`
|
|
}
|
|
|
|
type OutfitTaskStatusRes struct {
|
|
Status string `json:"status"`
|
|
Error string `json:"error"`
|
|
}
|