add
wangpengfei
2023-07-10 80fa90e29844947b26d41c16fb1a48516ec018f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package response
 
import (
    "aps_crm/model"
)
 
type (
    CaptchaResponse struct {
        CaptchaId     string `json:"captchaId"`
        PicPath       string `json:"picPath"`
        CaptchaLength int    `json:"captchaLength"`
        OpenCaptcha   bool   `json:"openCaptcha"`
    }
 
    UserResponse struct {
        User model.User `json:"user"`
    }
 
    LoginResponse struct {
        User      model.User `json:"user"`
        Token     string     `json:"token"`
        ExpiresAt int64      `json:"expiresAt"`
    }
 
    MenusResponse struct {
        Menus []*model.Menu `json:"menus"`
    }
 
    MenuResponse struct {
        Menu model.Menu `json:"menu"`
    }
 
    CountryResponse struct {
        List []*model.Country `json:"list"`
    }
 
    ProvinceResponse struct {
        List []*model.Province `json:"list"`
    }
 
    CityResponse struct {
        List []*model.City `json:"list"`
    }
 
    RegionResponse struct {
        List []*model.Region `json:"list"`
    }
 
    ContactResponse struct {
        List []*model.ContactDetail `json:"list"`
    }
 
    ClientResponse struct {
        List []*model.Client `json:"list"`
    }
 
    ClientStatusResponse struct {
        List []*model.ClientStatus `json:"list"`
    }
 
    ClientTypeResponse struct {
        List []*model.ClientType `json:"list"`
    }
 
    ClientOriginResponse struct {
        List []*model.ClientOrigin `json:"list"`
    }
 
    ClientLevelResponse struct {
        List []*model.ClientLevel `json:"list"`
    }
 
    IndustryResponse struct {
        List []*model.Industry `json:"list"`
    }
 
    EnterpriseNatureResponse struct {
        List []*model.EnterpriseNature `json:"list"`
    }
 
    RegisteredCapitalResponse struct {
        List []*model.RegisteredCapital `json:"list"`
    }
 
    EnterpriseScaleResponse struct {
        List []*model.EnterpriseScale `json:"list"`
    }
 
    SalesLeadsResponse struct {
        List []*model.SalesLeads `json:"list"`
    }
 
    SalesSourceResponse struct {
        List []*model.SalesSources `json:"list"`
    }
 
    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"`
    }
 
    MasterOrderResponse struct {
        List []*model.MasterOrder `json:"list"`
    }
)