This commit is contained in:
laodaming
2023-06-27 14:25:25 +08:00
parent 116171dddd
commit c5bcf9d676
15 changed files with 536 additions and 5 deletions

View File

@@ -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"`
}