update_good_bouns.go 553 字节
package command

//UpdateGoodBouns 更新订单的商品数量,和支付状态 并更新分红的数据
type UpdateGoodBouns struct {
	Id        int64       `json:"id"` //订单id
	GoodBouns []GoodBouns `json:"goodBouns"`
	CompanyId int64       `json:"companyId"`
}

//GoodBoun 商品数量调整
type GoodBouns struct {
	GoodId        int64  `json:"goodId"`        //货品id
	UseGoodNumber int    `json:"useGoodNumber"` //货品数量调整的数值
	Remark        string `json:"remark"`        //原因
	BounsStatus   int    `json:"BounsStatus"`
}