This commit is contained in:
Hiven
2023-08-03 17:37:25 +08:00
parent a864335c0e
commit 6158779a95
14 changed files with 228 additions and 26 deletions

View File

@@ -71,8 +71,19 @@ service home-user-auth {
// 用户logo列表
@handler UserLogoListHandler
get /api/user/logo-list (UserLogoListReq) returns (response);
// 再来一单
@handler UserAgainOrderHandler
get /api/user/one-more-order (UserAgainOrderReq) returns (response);
}
type (
UserAgainOrderReq {
Sn string `form:"sn"` // 订单编号
}
UserAgainOrderRes struct{}
)
type (
UserLogoListReq {
}