fix
This commit is contained in:
parent
88bd7798b8
commit
7e9cdbfb57
@ -25,6 +25,9 @@ service product {
|
|||||||
//产品设计数据采集
|
//产品设计数据采集
|
||||||
@handler DesignGatherHandler
|
@handler DesignGatherHandler
|
||||||
post /product/design-gather (DesignGatherReq) returns (response);
|
post /product/design-gather (DesignGatherReq) returns (response);
|
||||||
|
//获取产品信息
|
||||||
|
@handler GetProductInfoHandler
|
||||||
|
get /product/info(GetProductInfoReq) returns (response);
|
||||||
}
|
}
|
||||||
|
|
||||||
//获取产品列表
|
//获取产品列表
|
||||||
@ -117,3 +120,10 @@ type DesignGatherReq {
|
|||||||
type DesignGatherRsp {
|
type DesignGatherRsp {
|
||||||
Sn string `json:"sn"`
|
Sn string `json:"sn"`
|
||||||
}
|
}
|
||||||
|
//获取产品信息
|
||||||
|
type GetProductInfoReq{
|
||||||
|
Pid string `form:"pid"`
|
||||||
|
Size int64 `form:"size"`
|
||||||
|
ClientNo string `form:"client_no"`
|
||||||
|
HaveCloudRendering bool `form:"haveCloudRendering"`
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user