From f1fbbbf99f7fa820f51cb47aee4df7e7cf3df6f0 Mon Sep 17 00:00:00 2001 From: wangpengfei <274878379@qq.com> Date: 星期一, 10 七月 2023 19:43:57 +0800 Subject: [PATCH] add --- model/response/response.go | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/model/response/response.go b/model/response/response.go index 8a72c75..51423c7 100644 --- a/model/response/response.go +++ b/model/response/response.go @@ -47,7 +47,7 @@ } ContactResponse struct { - List []*model.Contact `json:"list"` + List []*model.ContactDetail `json:"list"` } ClientResponse struct { @@ -97,4 +97,32 @@ FollowRecordResponse struct { List []*model.FollowRecord `json:"list"` } + + SaleChanceResponse struct { + List []*model.SaleChance `json:"list"` + } + + SaleStageResponse struct { + List []*model.SaleStage `json:"list"` + } + + SaleTypeResponse struct { + List []*model.SaleType `json:"list"` + } + + RegularCustomersResponse struct { + List []*model.RegularCustomers `json:"list"` + } + + PossibilityResponse struct { + List []*model.Possibility `json:"list"` + } + + StatusResponse struct { + List []*model.Status `json:"list"` + } + + QuotationResponse struct { + List []*model.Quotation `json:"list"` + } ) -- Gitblit v1.8.0