智慧食堂-队列消费项目
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

goods_add_price.go 1.2 KiB

2 månader sedan
1234567891011121314151617181920
  1. package md
  2. type GoodsAddPriceConditions struct {
  3. CategoryId string `json:"category_id"`
  4. AddPriceType string `json:"add_price_type"` //1按金额增加2按比例增加
  5. AddPriceBase string `json:"add_price_base"` //加价基数 1按进货价2按利润空间
  6. AddPriceNum string `json:"add_price_num"` //类型是1就是直接加值,如果是2则是百分比
  7. NumType string `json:"num_type"` //价格数值设置 1小数点后两位2整数
  8. Ids []string `json:"ids"` //编辑商品id组
  9. IsSkuAddPrice string `json:"is_sku_add_price"`
  10. SkusConditions []*SkuAddPriceConditions `json:"skus_conditions"`
  11. }
  12. type SkuAddPriceConditions struct {
  13. AddPriceType string `json:"add_price_type"` //1按金额增加2按比例增加
  14. AddPriceBase string `json:"add_price_base"` //加价基数 1按进货价2按利润空间
  15. AddPriceNum string `json:"add_price_num"` //类型是1就是直接加值,如果是2则是百分比
  16. NumType string `json:"num_type"` //价格数值设置 1小数点后两位2整数
  17. SkuCode string `json:"sku_code"`
  18. }