76 lines
4.5 KiB
Go
76 lines
4.5 KiB
Go
package commands
|
||
|
||
// CreateProductCommand 创建产品命令
|
||
type CreateProductCommand struct {
|
||
Name string `json:"name" binding:"required,min=2,max=100" comment:"产品名称"`
|
||
Code string `json:"code" binding:"required,product_code" comment:"产品编号"`
|
||
Description string `json:"description" binding:"omitempty,max=500" comment:"产品描述"`
|
||
Content string `json:"content" binding:"omitempty,max=5000" comment:"产品内容"`
|
||
CategoryID string `json:"category_id" binding:"required,uuid" comment:"一级分类ID"`
|
||
SubCategoryID *string `json:"sub_category_id" binding:"omitempty,uuid" comment:"二级分类ID"`
|
||
Price float64 `json:"price" binding:"price,min=0" comment:"产品价格"`
|
||
CostPrice float64 `json:"cost_price" binding:"omitempty,min=0" comment:"成本价"`
|
||
Remark string `json:"remark" binding:"omitempty,max=1000" comment:"备注"`
|
||
IsEnabled bool `json:"is_enabled" comment:"是否启用"`
|
||
IsVisible bool `json:"is_visible" comment:"是否展示"`
|
||
IsPackage bool `json:"is_package" comment:"是否组合包"`
|
||
|
||
// UI组件相关字段
|
||
SellUIComponent bool `json:"sell_ui_component" comment:"是否出售UI组件"`
|
||
UIComponentPrice float64 `json:"ui_component_price" binding:"omitempty,min=0" comment:"UI组件销售价格(组合包使用)"`
|
||
|
||
// SEO信息
|
||
SEOTitle string `json:"seo_title" binding:"omitempty,max=100" comment:"SEO标题"`
|
||
SEODescription string `json:"seo_description" binding:"omitempty,max=200" comment:"SEO描述"`
|
||
SEOKeywords string `json:"seo_keywords" binding:"omitempty,max=200" comment:"SEO关键词"`
|
||
}
|
||
|
||
// UpdateProductCommand 更新产品命令
|
||
type UpdateProductCommand struct {
|
||
ID string `json:"-" uri:"id" binding:"required,uuid" comment:"产品ID"`
|
||
Name string `json:"name" binding:"required,min=2,max=100" comment:"产品名称"`
|
||
Code string `json:"code" binding:"required,product_code" comment:"产品编号"`
|
||
Description string `json:"description" binding:"omitempty,max=500" comment:"产品描述"`
|
||
Content string `json:"content" binding:"omitempty,max=5000" comment:"产品内容"`
|
||
CategoryID string `json:"category_id" binding:"required,uuid" comment:"一级分类ID"`
|
||
SubCategoryID *string `json:"sub_category_id" binding:"omitempty,uuid" comment:"二级分类ID"`
|
||
Price float64 `json:"price" binding:"price,min=0" comment:"产品价格"`
|
||
CostPrice float64 `json:"cost_price" binding:"omitempty,min=0" comment:"成本价"`
|
||
Remark string `json:"remark" binding:"omitempty,max=1000" comment:"备注"`
|
||
IsEnabled bool `json:"is_enabled" comment:"是否启用"`
|
||
IsVisible bool `json:"is_visible" comment:"是否展示"`
|
||
IsPackage bool `json:"is_package" comment:"是否组合包"`
|
||
|
||
// UI组件相关字段
|
||
SellUIComponent bool `json:"sell_ui_component" comment:"是否出售UI组件"`
|
||
UIComponentPrice float64 `json:"ui_component_price" binding:"omitempty,min=0" comment:"UI组件销售价格(组合包使用)"`
|
||
|
||
// SEO信息
|
||
SEOTitle string `json:"seo_title" binding:"omitempty,max=100" comment:"SEO标题"`
|
||
SEODescription string `json:"seo_description" binding:"omitempty,max=200" comment:"SEO描述"`
|
||
SEOKeywords string `json:"seo_keywords" binding:"omitempty,max=200" comment:"SEO关键词"`
|
||
}
|
||
|
||
// DeleteProductCommand 删除产品命令
|
||
type DeleteProductCommand struct {
|
||
ID string `json:"-" uri:"id" binding:"required,uuid" comment:"产品ID"`
|
||
}
|
||
|
||
// CreateProductApiConfigCommand 创建产品API配置命令
|
||
type CreateProductApiConfigCommand struct {
|
||
ProductID string `json:"product_id" binding:"required,uuid" comment:"产品ID"`
|
||
ApiEndpoint string `json:"api_endpoint" binding:"required,url" comment:"API端点"`
|
||
ApiKey string `json:"api_key" binding:"required" comment:"API密钥"`
|
||
ApiSecret string `json:"api_secret" binding:"required" comment:"API密钥"`
|
||
Config string `json:"config" binding:"omitempty" comment:"配置信息"`
|
||
}
|
||
|
||
// UpdateProductApiConfigCommand 更新产品API配置命令
|
||
type UpdateProductApiConfigCommand struct {
|
||
ProductID string `json:"product_id" binding:"required,uuid" comment:"产品ID"`
|
||
ApiEndpoint string `json:"api_endpoint" binding:"required,url" comment:"API端点"`
|
||
ApiKey string `json:"api_key" binding:"required" comment:"API密钥"`
|
||
ApiSecret string `json:"api_secret" binding:"required" comment:"API密钥"`
|
||
Config string `json:"config" binding:"omitempty" comment:"配置信息"`
|
||
}
|