fusenapi/server_api/inventory.api

19 lines
298 B
Plaintext
Raw Normal View History

2023-06-26 09:59:54 +00:00
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{
}