智慧食堂-队列消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
1.2 KiB

  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. }