fix
This commit is contained in:
@@ -8,12 +8,18 @@ info (
|
||||
)
|
||||
import "basic.api"
|
||||
|
||||
service canteen {
|
||||
service inventory {
|
||||
//提取云仓货物
|
||||
@handler TakeHandler
|
||||
post /inventory/take(TakeReq) returns (response);
|
||||
}
|
||||
//提取云仓货物
|
||||
type TakeReq{
|
||||
|
||||
//提取云仓货物
|
||||
type TakeReq {
|
||||
Form []TakeForm `json:"form"`
|
||||
AddressId int64 `json:"address_id"`
|
||||
}
|
||||
type TakeForm {
|
||||
Id int64 `json:"id"`
|
||||
Num int64 `json:"num"`
|
||||
}
|
||||
Reference in New Issue
Block a user