-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcCustomer.vb
286 lines (228 loc) · 6.36 KB
/
cCustomer.vb
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<Microsoft.VisualBasic.ComClass()> <System.Serializable()> Public Class cCustomer
Private _ArrearageFlag As String
Private _BlackListFlag As String
Private _CertAddr As String
Private _CertExpireDate As String
Private _CertNum As String
Private _CertType As String
Private _ContactAddr As String
Private _CustomerBirth As String
Private _CustomerID As String
Private _CustomerLoc As String
Private _CustomerName As String
Private _CustomerOccp As String
Private _CustomerSex As String
Private _CustomerType As String
Private _customerTypeName As String
Private _CustomerZip As String
Private _Para As System.Collections.ArrayList
Private _ReleOfficeID As String
Private _StatusChgTime As String
Private _ContactPhone As String
Private _ArrearageMess As System.Collections.ArrayList
Private _CustomerAddr As String
Private _CustLoc As String
Private _ContactPerson As String
Private _ContactZip As String
''' <remarks>客户性别</remarks>
Public Property CustomerSex() As String
Get
CustomerSex = _CustomerSex
End Get
Set(ByVal value As String)
_CustomerSex = value
End Set
End Property
Public Property ReleOfficeID() As String
Get
ReleOfficeID = _ReleOfficeID
End Get
Set(ByVal value As String)
_ReleOfficeID = value
End Set
End Property
Public Property CustomerAddr() As String
Get
CustomerAddr = _CustomerAddr
End Get
Set(ByVal value As String)
_CustomerAddr = value
End Set
End Property
Public Property CustLoc() As String
Get
CustLoc = _CustLoc
End Get
Set(ByVal value As String)
_CustLoc = value
End Set
End Property
Public Property ContactAddr() As String
Get
ContactAddr = _ContactAddr
End Get
Set(ByVal value As String)
_ContactAddr = value
End Set
End Property
Public Property BlackListFlag() As String
Get
BlackListFlag = _BlackListFlag
End Get
Set(ByVal value As String)
_BlackListFlag = value
End Set
End Property
Public Property CertNum() As String
Get
CertNum = _CertNum
End Get
Set(ByVal value As String)
_CertNum = value
End Set
End Property
Public Property CustomerType() As String
Get
CustomerType = _CustomerType
End Get
Set(ByVal value As String)
_CustomerType = value
End Set
End Property
Public Property ContactPerson() As String
Get
ContactPerson = _ContactPerson
End Get
Set(ByVal value As String)
_ContactPerson = value
End Set
End Property
Public Property CustomerOccp() As String
Get
CustomerOccp = _CustomerOccp
End Get
Set(ByVal value As String)
_CustomerOccp = value
End Set
End Property
Public Property StatusChgTime() As String
Get
StatusChgTime = _StatusChgTime
End Get
Set(ByVal value As String)
_StatusChgTime = value
End Set
End Property
Public Property customerTypeName() As String
Get
customerTypeName = _customerTypeName
End Get
Set(ByVal value As String)
_customerTypeName = value
End Set
End Property
Public Property CertAddr() As String
Get
CertAddr = _CertAddr
End Get
Set(ByVal value As String)
_CertAddr = value
End Set
End Property
Public Property ContactPhone() As String
Get
ContactPhone = _ContactPhone
End Get
Set(ByVal value As String)
_ContactPhone = value
End Set
End Property
Public Property CustomerZip() As String
Get
CustomerZip = _CustomerZip
End Get
Set(ByVal value As String)
_CustomerZip = value
End Set
End Property
Public Property CustomerBirth() As String
Get
CustomerBirth = _CustomerBirth
End Get
Set(ByVal value As String)
_CustomerBirth = value
End Set
End Property
Public Property ArrearageFlag() As String
Get
ArrearageFlag = _ArrearageFlag
End Get
Set(ByVal value As String)
_ArrearageFlag = value
End Set
End Property
Public Property CustomerName() As String
Get
CustomerName = _CustomerName
End Get
Set(ByVal value As String)
_CustomerName = value
End Set
End Property
Public Property CertExpireDate() As String
Get
CertExpireDate = _CertExpireDate
End Get
Set(ByVal value As String)
_CertExpireDate = value
End Set
End Property
Public Property CustomerLoc() As String
Get
CustomerLoc = _CustomerLoc
End Get
Set(ByVal value As String)
_CustomerLoc = value
End Set
End Property
Public Property CertType() As String
Get
CertType = _CertType
End Get
Set(ByVal value As String)
_CertType = value
End Set
End Property
Public Property CustomerID() As String
Get
CustomerID = _CustomerID
End Get
Set(ByVal value As String)
_CustomerID = value
End Set
End Property
Public Property ContactZip() As String
Get
ContactZip = _ContactZip
End Get
Set(ByVal value As String)
_ContactZip = value
End Set
End Property
Public Property Para() As System.Collections.ArrayList
Get
Para = _Para
End Get
Set(ByVal value As System.Collections.ArrayList)
_Para = value
End Set
End Property
Public Property ArrearageMess() As System.Collections.ArrayList
Get
ArrearageMess = _ArrearageMess
End Get
Set(ByVal value As System.Collections.ArrayList)
_ArrearageMess = value
End Set
End Property
End Class