forked from assimon/dujiaoka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcat_admin_ide_helper.php
361 lines (348 loc) · 18.6 KB
/
dcat_admin_ide_helper.php
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<?php
/**
* A helper file for Dcat Admin, to provide autocomplete information to your IDE
*
* This file should not be included in your code, only analyzed by your IDE!
*
* @author jqh <841324345@qq.com>
*/
namespace Dcat\Admin {
use Illuminate\Support\Collection;
/**
* @property Grid\Column|Collection id
* @property Grid\Column|Collection wholesale_price_cnf
* @property Grid\Column|Collection other_ipu_cnf
* @property Grid\Column|Collection api_hook
* @property Grid\Column|Collection created_at
* @property Grid\Column|Collection detail
* @property Grid\Column|Collection name
* @property Grid\Column|Collection type
* @property Grid\Column|Collection updated_at
* @property Grid\Column|Collection version
* @property Grid\Column|Collection is_enabled
* @property Grid\Column|Collection extension
* @property Grid\Column|Collection icon
* @property Grid\Column|Collection order
* @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection uri
* @property Grid\Column|Collection menu_id
* @property Grid\Column|Collection permission_id
* @property Grid\Column|Collection http_method
* @property Grid\Column|Collection http_path
* @property Grid\Column|Collection slug
* @property Grid\Column|Collection role_id
* @property Grid\Column|Collection user_id
* @property Grid\Column|Collection value
* @property Grid\Column|Collection avatar
* @property Grid\Column|Collection password
* @property Grid\Column|Collection remember_token
* @property Grid\Column|Collection username
* @property Grid\Column|Collection carmi
* @property Grid\Column|Collection deleted_at
* @property Grid\Column|Collection goods_id
* @property Grid\Column|Collection status
* @property Grid\Column|Collection coupon
* @property Grid\Column|Collection discount
* @property Grid\Column|Collection is_open
* @property Grid\Column|Collection is_use
* @property Grid\Column|Collection ret
* @property Grid\Column|Collection coupons_id
* @property Grid\Column|Collection tpl_content
* @property Grid\Column|Collection tpl_name
* @property Grid\Column|Collection tpl_token
* @property Grid\Column|Collection connection
* @property Grid\Column|Collection exception
* @property Grid\Column|Collection failed_at
* @property Grid\Column|Collection payload
* @property Grid\Column|Collection queue
* @property Grid\Column|Collection actual_price
* @property Grid\Column|Collection buy_limit_num
* @property Grid\Column|Collection buy_prompt
* @property Grid\Column|Collection gd_name
* @property Grid\Column|Collection group_id
* @property Grid\Column|Collection in_stock
* @property Grid\Column|Collection ord
* @property Grid\Column|Collection picture
* @property Grid\Column|Collection retail_price
* @property Grid\Column|Collection sales_volume
* @property Grid\Column|Collection gp_name
* @property Grid\Column|Collection buy_amount
* @property Grid\Column|Collection buy_ip
* @property Grid\Column|Collection coupon_discount_price
* @property Grid\Column|Collection coupon_id
* @property Grid\Column|Collection email
* @property Grid\Column|Collection goods_price
* @property Grid\Column|Collection info
* @property Grid\Column|Collection order_sn
* @property Grid\Column|Collection pay_id
* @property Grid\Column|Collection search_pwd
* @property Grid\Column|Collection total_price
* @property Grid\Column|Collection trade_no
* @property Grid\Column|Collection wholesale_discount_price
* @property Grid\Column|Collection merchant_id
* @property Grid\Column|Collection merchant_key
* @property Grid\Column|Collection merchant_pem
* @property Grid\Column|Collection pay_check
* @property Grid\Column|Collection pay_client
* @property Grid\Column|Collection pay_handleroute
* @property Grid\Column|Collection pay_method
* @property Grid\Column|Collection pay_name
*
* @method Grid\Column|Collection id(string $label = null)
* @method Grid\Column|Collection wholesale_price_cnf(string $label = null)
* @method Grid\Column|Collection other_ipu_cnf(string $label = null)
* @method Grid\Column|Collection api_hook(string $label = null)
* @method Grid\Column|Collection created_at(string $label = null)
* @method Grid\Column|Collection detail(string $label = null)
* @method Grid\Column|Collection name(string $label = null)
* @method Grid\Column|Collection type(string $label = null)
* @method Grid\Column|Collection updated_at(string $label = null)
* @method Grid\Column|Collection version(string $label = null)
* @method Grid\Column|Collection is_enabled(string $label = null)
* @method Grid\Column|Collection extension(string $label = null)
* @method Grid\Column|Collection icon(string $label = null)
* @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection uri(string $label = null)
* @method Grid\Column|Collection menu_id(string $label = null)
* @method Grid\Column|Collection permission_id(string $label = null)
* @method Grid\Column|Collection http_method(string $label = null)
* @method Grid\Column|Collection http_path(string $label = null)
* @method Grid\Column|Collection slug(string $label = null)
* @method Grid\Column|Collection role_id(string $label = null)
* @method Grid\Column|Collection user_id(string $label = null)
* @method Grid\Column|Collection value(string $label = null)
* @method Grid\Column|Collection avatar(string $label = null)
* @method Grid\Column|Collection password(string $label = null)
* @method Grid\Column|Collection remember_token(string $label = null)
* @method Grid\Column|Collection username(string $label = null)
* @method Grid\Column|Collection carmi(string $label = null)
* @method Grid\Column|Collection deleted_at(string $label = null)
* @method Grid\Column|Collection goods_id(string $label = null)
* @method Grid\Column|Collection status(string $label = null)
* @method Grid\Column|Collection coupon(string $label = null)
* @method Grid\Column|Collection discount(string $label = null)
* @method Grid\Column|Collection is_open(string $label = null)
* @method Grid\Column|Collection is_use(string $label = null)
* @method Grid\Column|Collection ret(string $label = null)
* @method Grid\Column|Collection coupons_id(string $label = null)
* @method Grid\Column|Collection tpl_content(string $label = null)
* @method Grid\Column|Collection tpl_name(string $label = null)
* @method Grid\Column|Collection tpl_token(string $label = null)
* @method Grid\Column|Collection connection(string $label = null)
* @method Grid\Column|Collection exception(string $label = null)
* @method Grid\Column|Collection failed_at(string $label = null)
* @method Grid\Column|Collection payload(string $label = null)
* @method Grid\Column|Collection queue(string $label = null)
* @method Grid\Column|Collection actual_price(string $label = null)
* @method Grid\Column|Collection buy_limit_num(string $label = null)
* @method Grid\Column|Collection buy_prompt(string $label = null)
* @method Grid\Column|Collection gd_name(string $label = null)
* @method Grid\Column|Collection group_id(string $label = null)
* @method Grid\Column|Collection in_stock(string $label = null)
* @method Grid\Column|Collection ord(string $label = null)
* @method Grid\Column|Collection picture(string $label = null)
* @method Grid\Column|Collection retail_price(string $label = null)
* @method Grid\Column|Collection sales_volume(string $label = null)
* @method Grid\Column|Collection gp_name(string $label = null)
* @method Grid\Column|Collection buy_amount(string $label = null)
* @method Grid\Column|Collection buy_ip(string $label = null)
* @method Grid\Column|Collection coupon_discount_price(string $label = null)
* @method Grid\Column|Collection coupon_id(string $label = null)
* @method Grid\Column|Collection email(string $label = null)
* @method Grid\Column|Collection goods_price(string $label = null)
* @method Grid\Column|Collection info(string $label = null)
* @method Grid\Column|Collection order_sn(string $label = null)
* @method Grid\Column|Collection pay_id(string $label = null)
* @method Grid\Column|Collection search_pwd(string $label = null)
* @method Grid\Column|Collection total_price(string $label = null)
* @method Grid\Column|Collection trade_no(string $label = null)
* @method Grid\Column|Collection wholesale_discount_price(string $label = null)
* @method Grid\Column|Collection merchant_id(string $label = null)
* @method Grid\Column|Collection merchant_key(string $label = null)
* @method Grid\Column|Collection merchant_pem(string $label = null)
* @method Grid\Column|Collection pay_check(string $label = null)
* @method Grid\Column|Collection pay_client(string $label = null)
* @method Grid\Column|Collection pay_handleroute(string $label = null)
* @method Grid\Column|Collection pay_method(string $label = null)
* @method Grid\Column|Collection pay_name(string $label = null)
*/
class Grid {}
class MiniGrid extends Grid {}
/**
* @property Show\Field|Collection id
* @property Show\Field|Collection wholesale_price_cnf
* @property Show\Field|Collection other_ipu_cnf
* @property Show\Field|Collection api_hook
* @property Show\Field|Collection created_at
* @property Show\Field|Collection detail
* @property Show\Field|Collection name
* @property Show\Field|Collection type
* @property Show\Field|Collection updated_at
* @property Show\Field|Collection version
* @property Show\Field|Collection is_enabled
* @property Show\Field|Collection extension
* @property Show\Field|Collection icon
* @property Show\Field|Collection order
* @property Show\Field|Collection parent_id
* @property Show\Field|Collection uri
* @property Show\Field|Collection menu_id
* @property Show\Field|Collection permission_id
* @property Show\Field|Collection http_method
* @property Show\Field|Collection http_path
* @property Show\Field|Collection slug
* @property Show\Field|Collection role_id
* @property Show\Field|Collection user_id
* @property Show\Field|Collection value
* @property Show\Field|Collection avatar
* @property Show\Field|Collection password
* @property Show\Field|Collection remember_token
* @property Show\Field|Collection username
* @property Show\Field|Collection carmi
* @property Show\Field|Collection deleted_at
* @property Show\Field|Collection goods_id
* @property Show\Field|Collection status
* @property Show\Field|Collection coupon
* @property Show\Field|Collection discount
* @property Show\Field|Collection is_open
* @property Show\Field|Collection is_use
* @property Show\Field|Collection ret
* @property Show\Field|Collection coupons_id
* @property Show\Field|Collection tpl_content
* @property Show\Field|Collection tpl_name
* @property Show\Field|Collection tpl_token
* @property Show\Field|Collection connection
* @property Show\Field|Collection exception
* @property Show\Field|Collection failed_at
* @property Show\Field|Collection payload
* @property Show\Field|Collection queue
* @property Show\Field|Collection actual_price
* @property Show\Field|Collection buy_limit_num
* @property Show\Field|Collection buy_prompt
* @property Show\Field|Collection gd_name
* @property Show\Field|Collection group_id
* @property Show\Field|Collection in_stock
* @property Show\Field|Collection ord
* @property Show\Field|Collection picture
* @property Show\Field|Collection retail_price
* @property Show\Field|Collection sales_volume
* @property Show\Field|Collection gp_name
* @property Show\Field|Collection buy_amount
* @property Show\Field|Collection buy_ip
* @property Show\Field|Collection coupon_discount_price
* @property Show\Field|Collection coupon_id
* @property Show\Field|Collection email
* @property Show\Field|Collection goods_price
* @property Show\Field|Collection info
* @property Show\Field|Collection order_sn
* @property Show\Field|Collection pay_id
* @property Show\Field|Collection search_pwd
* @property Show\Field|Collection total_price
* @property Show\Field|Collection trade_no
* @property Show\Field|Collection wholesale_discount_price
* @property Show\Field|Collection merchant_id
* @property Show\Field|Collection merchant_key
* @property Show\Field|Collection merchant_pem
* @property Show\Field|Collection pay_check
* @property Show\Field|Collection pay_client
* @property Show\Field|Collection pay_handleroute
* @property Show\Field|Collection pay_method
* @property Show\Field|Collection pay_name
*
* @method Show\Field|Collection id(string $label = null)
* @method Show\Field|Collection wholesale_price_cnf(string $label = null)
* @method Show\Field|Collection other_ipu_cnf(string $label = null)
* @method Show\Field|Collection api_hook(string $label = null)
* @method Show\Field|Collection created_at(string $label = null)
* @method Show\Field|Collection detail(string $label = null)
* @method Show\Field|Collection name(string $label = null)
* @method Show\Field|Collection type(string $label = null)
* @method Show\Field|Collection updated_at(string $label = null)
* @method Show\Field|Collection version(string $label = null)
* @method Show\Field|Collection is_enabled(string $label = null)
* @method Show\Field|Collection extension(string $label = null)
* @method Show\Field|Collection icon(string $label = null)
* @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection uri(string $label = null)
* @method Show\Field|Collection menu_id(string $label = null)
* @method Show\Field|Collection permission_id(string $label = null)
* @method Show\Field|Collection http_method(string $label = null)
* @method Show\Field|Collection http_path(string $label = null)
* @method Show\Field|Collection slug(string $label = null)
* @method Show\Field|Collection role_id(string $label = null)
* @method Show\Field|Collection user_id(string $label = null)
* @method Show\Field|Collection value(string $label = null)
* @method Show\Field|Collection avatar(string $label = null)
* @method Show\Field|Collection password(string $label = null)
* @method Show\Field|Collection remember_token(string $label = null)
* @method Show\Field|Collection username(string $label = null)
* @method Show\Field|Collection carmi(string $label = null)
* @method Show\Field|Collection deleted_at(string $label = null)
* @method Show\Field|Collection goods_id(string $label = null)
* @method Show\Field|Collection status(string $label = null)
* @method Show\Field|Collection coupon(string $label = null)
* @method Show\Field|Collection discount(string $label = null)
* @method Show\Field|Collection is_open(string $label = null)
* @method Show\Field|Collection is_use(string $label = null)
* @method Show\Field|Collection ret(string $label = null)
* @method Show\Field|Collection coupons_id(string $label = null)
* @method Show\Field|Collection tpl_content(string $label = null)
* @method Show\Field|Collection tpl_name(string $label = null)
* @method Show\Field|Collection tpl_token(string $label = null)
* @method Show\Field|Collection connection(string $label = null)
* @method Show\Field|Collection exception(string $label = null)
* @method Show\Field|Collection failed_at(string $label = null)
* @method Show\Field|Collection payload(string $label = null)
* @method Show\Field|Collection queue(string $label = null)
* @method Show\Field|Collection actual_price(string $label = null)
* @method Show\Field|Collection buy_limit_num(string $label = null)
* @method Show\Field|Collection buy_prompt(string $label = null)
* @method Show\Field|Collection gd_name(string $label = null)
* @method Show\Field|Collection group_id(string $label = null)
* @method Show\Field|Collection in_stock(string $label = null)
* @method Show\Field|Collection ord(string $label = null)
* @method Show\Field|Collection picture(string $label = null)
* @method Show\Field|Collection retail_price(string $label = null)
* @method Show\Field|Collection sales_volume(string $label = null)
* @method Show\Field|Collection gp_name(string $label = null)
* @method Show\Field|Collection buy_amount(string $label = null)
* @method Show\Field|Collection buy_ip(string $label = null)
* @method Show\Field|Collection coupon_discount_price(string $label = null)
* @method Show\Field|Collection coupon_id(string $label = null)
* @method Show\Field|Collection email(string $label = null)
* @method Show\Field|Collection goods_price(string $label = null)
* @method Show\Field|Collection info(string $label = null)
* @method Show\Field|Collection order_sn(string $label = null)
* @method Show\Field|Collection pay_id(string $label = null)
* @method Show\Field|Collection search_pwd(string $label = null)
* @method Show\Field|Collection total_price(string $label = null)
* @method Show\Field|Collection trade_no(string $label = null)
* @method Show\Field|Collection wholesale_discount_price(string $label = null)
* @method Show\Field|Collection merchant_id(string $label = null)
* @method Show\Field|Collection merchant_key(string $label = null)
* @method Show\Field|Collection merchant_pem(string $label = null)
* @method Show\Field|Collection pay_check(string $label = null)
* @method Show\Field|Collection pay_client(string $label = null)
* @method Show\Field|Collection pay_handleroute(string $label = null)
* @method Show\Field|Collection pay_method(string $label = null)
* @method Show\Field|Collection pay_name(string $label = null)
*/
class Show {}
/**
*/
class Form {}
}
namespace Dcat\Admin\Grid {
/**
*/
class Column {}
/**
*/
class Filter {}
}
namespace Dcat\Admin\Show {
/**
*/
class Field {}
}