This commit is contained in:
laodaming
2023-10-25 15:05:46 +08:00
parent 62dd14a627
commit 075f89df49
5 changed files with 0 additions and 108 deletions

View File

@@ -18,9 +18,6 @@ service collection {
//获取收藏列表
@handler GetCollectProductListHandler
get /api/collection/get_collect_product_list(GetCollectProductListReq) returns (response);
//测试算法合图并发
@handler TestAiHandler
post /api/collection/test_ai(TestAiReq) returns (response);
}
//收藏产品
@@ -55,8 +52,4 @@ type GetCollectProductListRspItem {
MinPrice string `json:"min_price"`
IsShelf int64 `json:"is_shelf"`
IsDeleted int64 `json:"is_deleted"`
}
//测试算法
type TestAiReq {
Data map[string]interface{} `json:"data"`
}