price_driven.go 725 B

12345678910111213
  1. package response
  2. // PriceDrivenItem 价格驱动详情
  3. type PriceDrivenItem struct {
  4. PriceDrivenID int `json:"price_driven_id" description:"价格驱动ID"`
  5. VarietyTagID int `json:"variety_tag_id" description:"标签ID"`
  6. MainVariable string `json:"main_variable" description:"关键变量"`
  7. CoreDrivenType int `json:"core_driven_type" description:"核心驱动类型 0-多 1-空"`
  8. CoreDrivenContent string `json:"core_driven_content" description:"核心驱动内容"`
  9. CoreContent string `json:"core_content" description:"核心内容"`
  10. CreateTime string `json:"create_time" description:"创建时间"`
  11. ModifyTime string `json:"modify_time" description:"更新时间"`
  12. }