From 0f15e7b48d064fa6faf99832ca5f4be9bc54e199 Mon Sep 17 00:00:00 2001 From: wangpengfei <274878379@qq.com> Date: 星期五, 11 八月 2023 13:41:09 +0800 Subject: [PATCH] fix --- model/response/response.go | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/model/response/response.go b/model/response/response.go index ac99723..cc15773 100644 --- a/model/response/response.go +++ b/model/response/response.go @@ -168,7 +168,8 @@ } ServiceContractsResponse struct { - List []*model.ServiceContract `json:"list"` + List []*model.ServiceContract `json:"list"` + Count int `json:"count"` } OrderManageResponse struct { @@ -343,4 +344,9 @@ CurrencyResponse struct { List []*model.Currency `json:"list"` } + + CollectionProjectionListResponse struct { + List []*model.CollectionProjection `json:"list"` + Count int `json:"count"` + } ) -- Gitblit v1.8.0