提交 e9446ab3 authored 作者: duanyinglei's avatar duanyinglei

添加商品单位参数

上级 caca1839
package v1
//单位列表请求参数
type GetGoodsUnitListReq struct {
SellerId int `json:"seller_id"`
}
//单位列表返回参数
type GetGoodsUnitListRes struct {
SellerId int `json:"seller_id"`
Title string `json:"title"`
Id int `json:"id"`
}
//单位列表添加参数
type AddGoodsUnitReq struct {
Title string `json:"title"`
SellerId int `json:"seller_id"`
}
//单位列表删除参数
type DelGoodsUnitReq struct {
SellerId int `json:"seller_id"`
Id int `json:"id"`
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论