From 5fac03fb857cf9a160e1736a25de2c5f95f5e44f Mon Sep 17 00:00:00 2001 From: wangpengfei <274878379@qq.com> Date: 星期二, 18 七月 2023 17:18:18 +0800 Subject: [PATCH] add --- model/response/response.go | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 111 insertions(+), 0 deletions(-) diff --git a/model/response/response.go b/model/response/response.go index b8909b4..3fcc727 100644 --- a/model/response/response.go +++ b/model/response/response.go @@ -105,4 +105,115 @@ 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"` + } + + MasterOrderResponse struct { + List []*model.MasterOrder `json:"list"` + } + + SubOrderResponse struct { + List []*model.SubOrder `json:"list"` + } + + SalesDetailsResponse struct { + List []*model.SalesDetails `json:"list"` + } + + SalesReturnResponse struct { + List []*model.SalesReturn `json:"list"` + } + + SalesRefundResponse struct { + List []*model.SalesRefund `json:"list"` + } + + ContractResponse struct { + List []*model.Contract `json:"list"` + } + + PlanResponse struct { + List []*model.Plan `json:"list"` + } + + ServiceContractsResponse struct { + List []*model.ServiceContract `json:"list"` + } + + OrderManageResponse struct { + List []*model.OrderManage `json:"list"` + } + + ServiceFollowupResponse struct { + List []*model.ServiceFollowup `json:"list"` + } + + CustomerServiceSheetResponse struct { + List []*model.CustomerServiceSheet `json:"list"` + } + + ServiceFeeManageResponse struct { + List []*model.ServiceFeeManage `json:"list"` + } + + MenuTreeResponse struct { + List []model.Menu `json:"list"` + } + + DataResponse struct { + // 鍥藉鏁版嵁 + Country []*model.Country `json:"country"` + // 鐪佷唤鏁版嵁 + Province []*model.Province `json:"province"` + // 鍩庡競鏁版嵁 + City []*model.City `json:"city"` + // 鍖哄煙鏁版嵁 + Region []*model.Region `json:"region"` + // 瀹㈡埛绛夌骇 + ClientLevel []*model.ClientLevel `json:"client_level"` + // 瀹㈡埛鐘舵�� + ClientStatus []*model.ClientStatus `json:"client_status"` + // 瀹㈡埛绫诲瀷 + ClientType []*model.ClientType `json:"client_type"` + // 瀹㈡埛鏉ユ簮 + ClientOrigin []*model.ClientOrigin `json:"client_origin"` + // 琛屼笟 + Industry []*model.Industry `json:"industry"` + // 浼佷笟鎬ц川 + EnterpriseNature []*model.EnterpriseNature `json:"enterprise_nature"` + // 娉ㄥ唽璧勯噾 + RegisteredCapital []*model.RegisteredCapital `json:"registered_capital"` + // 浼佷笟瑙勬ā + EnterpriseScale []*model.EnterpriseScale `json:"enterprise_scale"` + // 閿�鍞樁娈� + SaleStage []*model.SaleStage `json:"sale_stage"` + // 閿�鍞被鍨� + SaleType []*model.SaleType `json:"sale_type"` + // 鍟嗘満鏉ユ簮 + SalesSource []*model.SalesSources `json:"sales_source"` + // 鑰佸鎴疯惀閿� + RegularCustomers []*model.RegularCustomers `json:"regular_customers"` + } + + DepartmentResponse struct { + List []*model.Department `json:"list"` + } ) -- Gitblit v1.8.0