This commit is contained in:
laodaming 2023-06-26 17:59:54 +08:00
parent f3eea7f664
commit 42314b9807

19
server_api/inventory.api Normal file
View File

@ -0,0 +1,19 @@
syntax = "v1"
info (
title: "云仓服务"// TODO: add title
desc: // TODO: add description
author: "daming"
email: ""
)
import "basic.api"
service canteen {
//提取云仓货物
@handler TakeHandler
post /inventory/take(TakeReq) returns (response);
}
//提取云仓货物
type TakeReq{
}