good_list.go 396 字节
package command

type OrderGoodData struct {
	//货品id
	Id int64 `json:"id"`
	//货品名称 长度可能较长
	GoodName string `json:"goodName"`
	//预计的货品数量
	PlanGoodNumber int `json:"planGoodNumber"`
	//货品单价
	Price float64 `json:"price"`
	//合伙人分红比例
	PartnerBonusPercent float64 `json:"partnerBonusPercent"`
	//备注信息
	Remark string `json:"remark"`
}