Merge branch 'develop' of https://gitee.com/fusenpack/fusenapi into develop

This commit is contained in:
eson
2023-06-08 11:37:15 +08:00
9 changed files with 243 additions and 4 deletions

View File

@@ -15,7 +15,10 @@ import "basic.api"
service data-transfer {
//获取标准logo列表
@handler GetStandardLogoListHandler
get /standard-logo/list ( ) returns (response);
get /standard-logo/list returns (response);
//获取二维码设置列表
@handler GetQrCodeSetListHandler
get /qrcode-set/list returns (response);
}
//获取标准logo列表
@@ -23,4 +26,9 @@ type GetStandardLogoListRsp {
Id int64 `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
}
//获取二维码设置列表
type GetQrCodeSetListRsp {
Id int64 `json:"id"`
Name string `json:"name"`
}

View File

@@ -20,7 +20,7 @@ service product {
get /product/success-recommand (GetSuccessRecommandReq) returns (response);
//获取分类下的产品以及尺寸
@handler GetSizeByProduct
get /product/get-size-by-product () returns (response);
get /product/get-size-by-product returns (response);
}
//获取产品列表