| | |
| | | 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"` |
| | | } |
| | | ) |