@tachybase/plugin-workflow-test 0.23.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +14 -0
- package/LICENSE +201 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.js +1 -0
- package/dist/e2e/e2eCollectionModel.d.ts +2830 -0
- package/dist/e2e/e2eCollectionModel.js +4264 -0
- package/dist/e2e/e2ePageObjectModel.d.ts +309 -0
- package/dist/e2e/e2ePageObjectModel.js +627 -0
- package/dist/e2e/e2eUtils.d.ts +42 -0
- package/dist/e2e/e2eUtils.js +399 -0
- package/dist/e2e/index.d.ts +4 -0
- package/dist/e2e/index.js +43 -0
- package/dist/externalVersion.js +10 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +39 -0
- package/dist/server/collections/categories.d.ts +3 -0
- package/dist/server/collections/categories.js +35 -0
- package/dist/server/collections/comments.d.ts +3 -0
- package/dist/server/collections/comments.js +44 -0
- package/dist/server/collections/posts.d.ts +3 -0
- package/dist/server/collections/posts.js +60 -0
- package/dist/server/collections/replies.d.ts +8 -0
- package/dist/server/collections/replies.js +31 -0
- package/dist/server/collections/tags.d.ts +3 -0
- package/dist/server/collections/tags.js +35 -0
- package/dist/server/functions.d.ts +4 -0
- package/dist/server/functions.js +25 -0
- package/dist/server/index.d.ts +10 -0
- package/dist/server/index.js +102 -0
- package/dist/server/instructions.d.ts +41 -0
- package/dist/server/instructions.js +82 -0
- package/dist/server/triggers.d.ts +20 -0
- package/dist/server/triggers.js +49 -0
- package/e2e.d.ts +2 -0
- package/e2e.js +1 -0
- package/package.json +24 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
- package/src/client/index.ts +3 -0
- package/src/e2e/e2eCollectionModel.ts +4251 -0
- package/src/e2e/e2ePageObjectModel.ts +647 -0
- package/src/e2e/e2eUtils.ts +950 -0
- package/src/e2e/index.ts +4 -0
- package/src/index.ts +2 -0
- package/src/server/collections/categories.ts +15 -0
- package/src/server/collections/comments.ts +24 -0
- package/src/server/collections/posts.ts +40 -0
- package/src/server/collections/replies.ts +9 -0
- package/src/server/collections/tags.ts +15 -0
- package/src/server/functions.ts +3 -0
- package/src/server/index.ts +84 -0
- package/src/server/instructions.ts +67 -0
- package/src/server/triggers.ts +19 -0
|
@@ -0,0 +1,4251 @@
|
|
|
1
|
+
import { dayjs } from '@tachybase/utils';
|
|
2
|
+
|
|
3
|
+
import { lowerCase } from 'lodash';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 为json对象中collections节点的name、title属性添加后缀
|
|
7
|
+
* 为json对象中fields节点的collectionName、through、target性添加后缀
|
|
8
|
+
* @param jsonObj json对象
|
|
9
|
+
* @param appendText 后缀文本
|
|
10
|
+
*/
|
|
11
|
+
export function appendJsonCollectionName(jsonObj: any, appendText: string) {
|
|
12
|
+
appendCollectionsNode(jsonObj, appendText);
|
|
13
|
+
for (const item of jsonObj['collections'][0]['fields']) {
|
|
14
|
+
appendFieldsNode(item, appendText);
|
|
15
|
+
}
|
|
16
|
+
return jsonObj;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function appendCollectionsNode(jsonObj: any, appendText: string) {
|
|
20
|
+
jsonObj['collections'][0]['name'] += appendText;
|
|
21
|
+
jsonObj['collections'][0]['title'] += appendText;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function appendFieldsNode(jsonObj: any, appendText: string) {
|
|
25
|
+
for (const key in jsonObj) {
|
|
26
|
+
if (key === 'collectionName' || key === 'through' || key === 'target') {
|
|
27
|
+
jsonObj[key] += appendText;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* builtin_ 为TachyBase内置模板,同TachyBase在页面创建效果一致主要用法3种:
|
|
34
|
+
* 1是测试用例仅需一个无业务字段的表即可验证,
|
|
35
|
+
* 2是作为多对多的中间表,
|
|
36
|
+
* 3是存在先表后关系字段的情况,使用create内置模板表再update表的方式更新数据表来添加全部字段
|
|
37
|
+
* e2e_ 按照不同场景的数据表,可以多个测试用例共用一个或一套数据表
|
|
38
|
+
*/
|
|
39
|
+
export const builtinGeneral = {
|
|
40
|
+
collections: [
|
|
41
|
+
{
|
|
42
|
+
key: 'hqh4qy21m46',
|
|
43
|
+
name: 'tt_amt_org',
|
|
44
|
+
title: '自动>组织[普通表]',
|
|
45
|
+
inherit: false,
|
|
46
|
+
hidden: false,
|
|
47
|
+
description: null,
|
|
48
|
+
fields: [
|
|
49
|
+
{
|
|
50
|
+
key: 'z3fvals50xp',
|
|
51
|
+
name: 'id',
|
|
52
|
+
type: 'bigInt',
|
|
53
|
+
interface: 'id',
|
|
54
|
+
description: null,
|
|
55
|
+
collectionName: 'tt_amt_org',
|
|
56
|
+
parentKey: null,
|
|
57
|
+
reverseKey: null,
|
|
58
|
+
autoIncrement: true,
|
|
59
|
+
primaryKey: true,
|
|
60
|
+
allowNull: false,
|
|
61
|
+
uiSchema: {
|
|
62
|
+
type: 'number',
|
|
63
|
+
title: '{{t("ID")}}',
|
|
64
|
+
'x-component': 'InputNumber',
|
|
65
|
+
'x-read-pretty': true,
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: '3cp1zy4ogle',
|
|
70
|
+
name: 'createdAt',
|
|
71
|
+
type: 'date',
|
|
72
|
+
interface: 'createdAt',
|
|
73
|
+
description: null,
|
|
74
|
+
collectionName: 'tt_amt_org',
|
|
75
|
+
parentKey: null,
|
|
76
|
+
reverseKey: null,
|
|
77
|
+
field: 'createdAt',
|
|
78
|
+
uiSchema: {
|
|
79
|
+
type: 'datetime',
|
|
80
|
+
title: '{{t("Created at")}}',
|
|
81
|
+
'x-component': 'DatePicker',
|
|
82
|
+
'x-component-props': {},
|
|
83
|
+
'x-read-pretty': true,
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
key: '6l38n4nt7nb',
|
|
88
|
+
name: 'createdBy',
|
|
89
|
+
type: 'belongsTo',
|
|
90
|
+
interface: 'createdBy',
|
|
91
|
+
description: null,
|
|
92
|
+
collectionName: 'tt_amt_org',
|
|
93
|
+
parentKey: null,
|
|
94
|
+
reverseKey: null,
|
|
95
|
+
target: 'users',
|
|
96
|
+
foreignKey: 'createdById',
|
|
97
|
+
uiSchema: {
|
|
98
|
+
type: 'object',
|
|
99
|
+
title: '{{t("Created by")}}',
|
|
100
|
+
'x-component': 'AssociationField',
|
|
101
|
+
'x-component-props': {
|
|
102
|
+
fieldNames: {
|
|
103
|
+
value: 'id',
|
|
104
|
+
label: 'nickname',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
'x-read-pretty': true,
|
|
108
|
+
},
|
|
109
|
+
targetKey: 'id',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
key: '3xds0p7ersr',
|
|
113
|
+
name: 'updatedAt',
|
|
114
|
+
type: 'date',
|
|
115
|
+
interface: 'updatedAt',
|
|
116
|
+
description: null,
|
|
117
|
+
collectionName: 'tt_amt_org',
|
|
118
|
+
parentKey: null,
|
|
119
|
+
reverseKey: null,
|
|
120
|
+
field: 'updatedAt',
|
|
121
|
+
uiSchema: {
|
|
122
|
+
type: 'string',
|
|
123
|
+
title: '{{t("Last updated at")}}',
|
|
124
|
+
'x-component': 'DatePicker',
|
|
125
|
+
'x-component-props': {},
|
|
126
|
+
'x-read-pretty': true,
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
key: 'slqyx974mzc',
|
|
131
|
+
name: 'updatedBy',
|
|
132
|
+
type: 'belongsTo',
|
|
133
|
+
interface: 'updatedBy',
|
|
134
|
+
description: null,
|
|
135
|
+
collectionName: 'tt_amt_org',
|
|
136
|
+
parentKey: null,
|
|
137
|
+
reverseKey: null,
|
|
138
|
+
target: 'users',
|
|
139
|
+
foreignKey: 'updatedById',
|
|
140
|
+
uiSchema: {
|
|
141
|
+
type: 'object',
|
|
142
|
+
title: '{{t("Last updated by")}}',
|
|
143
|
+
'x-component': 'AssociationField',
|
|
144
|
+
'x-component-props': {
|
|
145
|
+
fieldNames: {
|
|
146
|
+
value: 'id',
|
|
147
|
+
label: 'nickname',
|
|
148
|
+
},
|
|
149
|
+
},
|
|
150
|
+
'x-read-pretty': true,
|
|
151
|
+
},
|
|
152
|
+
targetKey: 'id',
|
|
153
|
+
},
|
|
154
|
+
],
|
|
155
|
+
category: [],
|
|
156
|
+
logging: true,
|
|
157
|
+
autoGenId: true,
|
|
158
|
+
createdBy: true,
|
|
159
|
+
updatedBy: true,
|
|
160
|
+
createdAt: true,
|
|
161
|
+
updatedAt: true,
|
|
162
|
+
sortable: true,
|
|
163
|
+
template: 'general',
|
|
164
|
+
view: false,
|
|
165
|
+
schema: 'public',
|
|
166
|
+
},
|
|
167
|
+
],
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
export const builtinCalendar = {
|
|
171
|
+
collections: [
|
|
172
|
+
{
|
|
173
|
+
key: '7lfgblnyr0w',
|
|
174
|
+
name: 'tt_amt_org_cld',
|
|
175
|
+
title: '自动>组织[日历表]',
|
|
176
|
+
inherit: false,
|
|
177
|
+
hidden: false,
|
|
178
|
+
description: null,
|
|
179
|
+
fields: [
|
|
180
|
+
{
|
|
181
|
+
key: 'nq6a40fz0nd',
|
|
182
|
+
name: 'cron',
|
|
183
|
+
type: 'string',
|
|
184
|
+
interface: 'select',
|
|
185
|
+
description: null,
|
|
186
|
+
collectionName: 'tt_amt_org_cld',
|
|
187
|
+
parentKey: null,
|
|
188
|
+
reverseKey: null,
|
|
189
|
+
uiSchema: {
|
|
190
|
+
type: 'string',
|
|
191
|
+
title: '{{t("Repeats")}}',
|
|
192
|
+
'x-component': 'CronSet',
|
|
193
|
+
'x-component-props': 'allowClear',
|
|
194
|
+
enum: [
|
|
195
|
+
{
|
|
196
|
+
label: '{{t("Daily")}}',
|
|
197
|
+
value: '0 0 0 * * ?',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
label: '{{t("Weekly")}}',
|
|
201
|
+
value: 'every_week',
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
label: '{{t("Monthly")}}',
|
|
205
|
+
value: 'every_month',
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
label: '{{t("Yearly")}}',
|
|
209
|
+
value: 'every_year',
|
|
210
|
+
},
|
|
211
|
+
],
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
key: 'qtxt638o4nq',
|
|
216
|
+
name: 'exclude',
|
|
217
|
+
type: 'json',
|
|
218
|
+
interface: null,
|
|
219
|
+
description: null,
|
|
220
|
+
collectionName: 'tt_amt_org_cld',
|
|
221
|
+
parentKey: null,
|
|
222
|
+
reverseKey: null,
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
key: 'ly88an4fg8f',
|
|
226
|
+
name: 'id',
|
|
227
|
+
type: 'bigInt',
|
|
228
|
+
interface: 'id',
|
|
229
|
+
description: null,
|
|
230
|
+
collectionName: 'tt_amt_org_cld',
|
|
231
|
+
parentKey: null,
|
|
232
|
+
reverseKey: null,
|
|
233
|
+
autoIncrement: true,
|
|
234
|
+
primaryKey: true,
|
|
235
|
+
allowNull: false,
|
|
236
|
+
uiSchema: {
|
|
237
|
+
type: 'number',
|
|
238
|
+
title: '{{t("ID")}}',
|
|
239
|
+
'x-component': 'InputNumber',
|
|
240
|
+
'x-read-pretty': true,
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
key: '8fiqtpovg79',
|
|
245
|
+
name: 'createdAt',
|
|
246
|
+
type: 'date',
|
|
247
|
+
interface: 'createdAt',
|
|
248
|
+
description: null,
|
|
249
|
+
collectionName: 'tt_amt_org_cld',
|
|
250
|
+
parentKey: null,
|
|
251
|
+
reverseKey: null,
|
|
252
|
+
field: 'createdAt',
|
|
253
|
+
uiSchema: {
|
|
254
|
+
type: 'datetime',
|
|
255
|
+
title: '{{t("Created at")}}',
|
|
256
|
+
'x-component': 'DatePicker',
|
|
257
|
+
'x-component-props': {},
|
|
258
|
+
'x-read-pretty': true,
|
|
259
|
+
},
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
key: 'hup33jdnp9j',
|
|
263
|
+
name: 'createdBy',
|
|
264
|
+
type: 'belongsTo',
|
|
265
|
+
interface: 'createdBy',
|
|
266
|
+
description: null,
|
|
267
|
+
collectionName: 'tt_amt_org_cld',
|
|
268
|
+
parentKey: null,
|
|
269
|
+
reverseKey: null,
|
|
270
|
+
target: 'users',
|
|
271
|
+
foreignKey: 'createdById',
|
|
272
|
+
uiSchema: {
|
|
273
|
+
type: 'object',
|
|
274
|
+
title: '{{t("Created by")}}',
|
|
275
|
+
'x-component': 'AssociationField',
|
|
276
|
+
'x-component-props': {
|
|
277
|
+
fieldNames: {
|
|
278
|
+
value: 'id',
|
|
279
|
+
label: 'nickname',
|
|
280
|
+
},
|
|
281
|
+
},
|
|
282
|
+
'x-read-pretty': true,
|
|
283
|
+
},
|
|
284
|
+
targetKey: 'id',
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
key: '4ky6wvfhduq',
|
|
288
|
+
name: 'updatedAt',
|
|
289
|
+
type: 'date',
|
|
290
|
+
interface: 'updatedAt',
|
|
291
|
+
description: null,
|
|
292
|
+
collectionName: 'tt_amt_org_cld',
|
|
293
|
+
parentKey: null,
|
|
294
|
+
reverseKey: null,
|
|
295
|
+
field: 'updatedAt',
|
|
296
|
+
uiSchema: {
|
|
297
|
+
type: 'string',
|
|
298
|
+
title: '{{t("Last updated at")}}',
|
|
299
|
+
'x-component': 'DatePicker',
|
|
300
|
+
'x-component-props': {},
|
|
301
|
+
'x-read-pretty': true,
|
|
302
|
+
},
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
key: '1xht59blk26',
|
|
306
|
+
name: 'updatedBy',
|
|
307
|
+
type: 'belongsTo',
|
|
308
|
+
interface: 'updatedBy',
|
|
309
|
+
description: null,
|
|
310
|
+
collectionName: 'tt_amt_org_cld',
|
|
311
|
+
parentKey: null,
|
|
312
|
+
reverseKey: null,
|
|
313
|
+
target: 'users',
|
|
314
|
+
foreignKey: 'updatedById',
|
|
315
|
+
uiSchema: {
|
|
316
|
+
type: 'object',
|
|
317
|
+
title: '{{t("Last updated by")}}',
|
|
318
|
+
'x-component': 'AssociationField',
|
|
319
|
+
'x-component-props': {
|
|
320
|
+
fieldNames: {
|
|
321
|
+
value: 'id',
|
|
322
|
+
label: 'nickname',
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
'x-read-pretty': true,
|
|
326
|
+
},
|
|
327
|
+
targetKey: 'id',
|
|
328
|
+
},
|
|
329
|
+
],
|
|
330
|
+
category: [],
|
|
331
|
+
logging: true,
|
|
332
|
+
template: 'calendar',
|
|
333
|
+
view: false,
|
|
334
|
+
createdBy: true,
|
|
335
|
+
updatedBy: true,
|
|
336
|
+
createdAt: true,
|
|
337
|
+
updatedAt: true,
|
|
338
|
+
sortable: true,
|
|
339
|
+
schema: 'public',
|
|
340
|
+
},
|
|
341
|
+
],
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
export const builtinTree = {
|
|
345
|
+
collections: [
|
|
346
|
+
{
|
|
347
|
+
key: 'wvgsufr1uxv',
|
|
348
|
+
name: 'tt_amt_org_tree',
|
|
349
|
+
title: '自动>组织[树表]',
|
|
350
|
+
inherit: false,
|
|
351
|
+
hidden: false,
|
|
352
|
+
description: null,
|
|
353
|
+
fields: [
|
|
354
|
+
{
|
|
355
|
+
key: '4ihc87rzn00',
|
|
356
|
+
name: 'parentId',
|
|
357
|
+
type: 'bigInt',
|
|
358
|
+
interface: 'integer',
|
|
359
|
+
description: null,
|
|
360
|
+
collectionName: 'tt_amt_org_tree',
|
|
361
|
+
parentKey: null,
|
|
362
|
+
reverseKey: null,
|
|
363
|
+
isForeignKey: true,
|
|
364
|
+
uiSchema: {
|
|
365
|
+
type: 'number',
|
|
366
|
+
title: '{{t("Parent ID")}}',
|
|
367
|
+
'x-component': 'InputNumber',
|
|
368
|
+
'x-read-pretty': true,
|
|
369
|
+
},
|
|
370
|
+
target: 'tt_amt_org_tree',
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
key: 'j58bfihyjdy',
|
|
374
|
+
name: 'parent',
|
|
375
|
+
type: 'belongsTo',
|
|
376
|
+
interface: 'm2o',
|
|
377
|
+
description: null,
|
|
378
|
+
collectionName: 'tt_amt_org_tree',
|
|
379
|
+
parentKey: null,
|
|
380
|
+
reverseKey: null,
|
|
381
|
+
foreignKey: 'parentId',
|
|
382
|
+
treeParent: true,
|
|
383
|
+
onDelete: 'CASCADE',
|
|
384
|
+
uiSchema: {
|
|
385
|
+
title: '{{t("Parent")}}',
|
|
386
|
+
'x-component': 'AssociationField',
|
|
387
|
+
'x-component-props': {
|
|
388
|
+
multiple: false,
|
|
389
|
+
fieldNames: {
|
|
390
|
+
label: 'id',
|
|
391
|
+
value: 'id',
|
|
392
|
+
},
|
|
393
|
+
},
|
|
394
|
+
},
|
|
395
|
+
target: 'tt_amt_org_tree',
|
|
396
|
+
targetKey: 'id',
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
key: '6r6b98g0hcz',
|
|
400
|
+
name: 'children',
|
|
401
|
+
type: 'hasMany',
|
|
402
|
+
interface: 'o2m',
|
|
403
|
+
description: null,
|
|
404
|
+
collectionName: 'tt_amt_org_tree',
|
|
405
|
+
parentKey: null,
|
|
406
|
+
reverseKey: null,
|
|
407
|
+
foreignKey: 'parentId',
|
|
408
|
+
treeChildren: true,
|
|
409
|
+
onDelete: 'CASCADE',
|
|
410
|
+
uiSchema: {
|
|
411
|
+
title: '{{t("Children")}}',
|
|
412
|
+
'x-component': 'AssociationField',
|
|
413
|
+
'x-component-props': {
|
|
414
|
+
multiple: true,
|
|
415
|
+
fieldNames: {
|
|
416
|
+
label: 'id',
|
|
417
|
+
value: 'id',
|
|
418
|
+
},
|
|
419
|
+
},
|
|
420
|
+
},
|
|
421
|
+
target: 'tt_amt_org_tree',
|
|
422
|
+
targetKey: 'id',
|
|
423
|
+
sourceKey: 'id',
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
key: 'hju1ggqps4n',
|
|
427
|
+
name: 'id',
|
|
428
|
+
type: 'bigInt',
|
|
429
|
+
interface: 'id',
|
|
430
|
+
description: null,
|
|
431
|
+
collectionName: 'tt_amt_org_tree',
|
|
432
|
+
parentKey: null,
|
|
433
|
+
reverseKey: null,
|
|
434
|
+
autoIncrement: true,
|
|
435
|
+
primaryKey: true,
|
|
436
|
+
allowNull: false,
|
|
437
|
+
uiSchema: {
|
|
438
|
+
type: 'number',
|
|
439
|
+
title: '{{t("ID")}}',
|
|
440
|
+
'x-component': 'InputNumber',
|
|
441
|
+
'x-read-pretty': true,
|
|
442
|
+
},
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
key: '1y7rpmh8muj',
|
|
446
|
+
name: 'createdAt',
|
|
447
|
+
type: 'date',
|
|
448
|
+
interface: 'createdAt',
|
|
449
|
+
description: null,
|
|
450
|
+
collectionName: 'tt_amt_org_tree',
|
|
451
|
+
parentKey: null,
|
|
452
|
+
reverseKey: null,
|
|
453
|
+
field: 'createdAt',
|
|
454
|
+
uiSchema: {
|
|
455
|
+
type: 'datetime',
|
|
456
|
+
title: '{{t("Created at")}}',
|
|
457
|
+
'x-component': 'DatePicker',
|
|
458
|
+
'x-component-props': {},
|
|
459
|
+
'x-read-pretty': true,
|
|
460
|
+
},
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
key: 'ieknujjdkv9',
|
|
464
|
+
name: 'createdBy',
|
|
465
|
+
type: 'belongsTo',
|
|
466
|
+
interface: 'createdBy',
|
|
467
|
+
description: null,
|
|
468
|
+
collectionName: 'tt_amt_org_tree',
|
|
469
|
+
parentKey: null,
|
|
470
|
+
reverseKey: null,
|
|
471
|
+
target: 'users',
|
|
472
|
+
foreignKey: 'createdById',
|
|
473
|
+
uiSchema: {
|
|
474
|
+
type: 'object',
|
|
475
|
+
title: '{{t("Created by")}}',
|
|
476
|
+
'x-component': 'AssociationField',
|
|
477
|
+
'x-component-props': {
|
|
478
|
+
fieldNames: {
|
|
479
|
+
value: 'id',
|
|
480
|
+
label: 'nickname',
|
|
481
|
+
},
|
|
482
|
+
},
|
|
483
|
+
'x-read-pretty': true,
|
|
484
|
+
},
|
|
485
|
+
targetKey: 'id',
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
key: 'cv35rzoqna6',
|
|
489
|
+
name: 'updatedAt',
|
|
490
|
+
type: 'date',
|
|
491
|
+
interface: 'updatedAt',
|
|
492
|
+
description: null,
|
|
493
|
+
collectionName: 'tt_amt_org_tree',
|
|
494
|
+
parentKey: null,
|
|
495
|
+
reverseKey: null,
|
|
496
|
+
field: 'updatedAt',
|
|
497
|
+
uiSchema: {
|
|
498
|
+
type: 'string',
|
|
499
|
+
title: '{{t("Last updated at")}}',
|
|
500
|
+
'x-component': 'DatePicker',
|
|
501
|
+
'x-component-props': {},
|
|
502
|
+
'x-read-pretty': true,
|
|
503
|
+
},
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
key: 'z21wfpry7uh',
|
|
507
|
+
name: 'updatedBy',
|
|
508
|
+
type: 'belongsTo',
|
|
509
|
+
interface: 'updatedBy',
|
|
510
|
+
description: null,
|
|
511
|
+
collectionName: 'tt_amt_org_tree',
|
|
512
|
+
parentKey: null,
|
|
513
|
+
reverseKey: null,
|
|
514
|
+
target: 'users',
|
|
515
|
+
foreignKey: 'updatedById',
|
|
516
|
+
uiSchema: {
|
|
517
|
+
type: 'object',
|
|
518
|
+
title: '{{t("Last updated by")}}',
|
|
519
|
+
'x-component': 'AssociationField',
|
|
520
|
+
'x-component-props': {
|
|
521
|
+
fieldNames: {
|
|
522
|
+
value: 'id',
|
|
523
|
+
label: 'nickname',
|
|
524
|
+
},
|
|
525
|
+
},
|
|
526
|
+
'x-read-pretty': true,
|
|
527
|
+
},
|
|
528
|
+
targetKey: 'id',
|
|
529
|
+
},
|
|
530
|
+
],
|
|
531
|
+
category: [],
|
|
532
|
+
logging: true,
|
|
533
|
+
autoGenId: true,
|
|
534
|
+
createdBy: true,
|
|
535
|
+
updatedBy: true,
|
|
536
|
+
createdAt: true,
|
|
537
|
+
updatedAt: true,
|
|
538
|
+
sortable: true,
|
|
539
|
+
template: 'tree',
|
|
540
|
+
view: false,
|
|
541
|
+
tree: 'adjacencyList',
|
|
542
|
+
schema: 'public',
|
|
543
|
+
},
|
|
544
|
+
],
|
|
545
|
+
};
|
|
546
|
+
|
|
547
|
+
export const builtinFile = {
|
|
548
|
+
collections: [
|
|
549
|
+
{
|
|
550
|
+
key: '6hzed4cvpxo',
|
|
551
|
+
name: 'tt_amt_file',
|
|
552
|
+
title: '自动>档案[文件表]',
|
|
553
|
+
inherit: false,
|
|
554
|
+
hidden: false,
|
|
555
|
+
description: null,
|
|
556
|
+
fields: [
|
|
557
|
+
{
|
|
558
|
+
key: 'qo0w8dcl45u',
|
|
559
|
+
name: 'title',
|
|
560
|
+
type: 'string',
|
|
561
|
+
interface: 'input',
|
|
562
|
+
description: null,
|
|
563
|
+
collectionName: 'tt_amt_file',
|
|
564
|
+
parentKey: null,
|
|
565
|
+
reverseKey: null,
|
|
566
|
+
deletable: false,
|
|
567
|
+
uiSchema: {
|
|
568
|
+
type: 'string',
|
|
569
|
+
title: '{{t("Title")}}',
|
|
570
|
+
'x-component': 'Input',
|
|
571
|
+
},
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
key: 'ayzc9b3aee5',
|
|
575
|
+
name: 'filename',
|
|
576
|
+
type: 'string',
|
|
577
|
+
interface: 'input',
|
|
578
|
+
description: null,
|
|
579
|
+
collectionName: 'tt_amt_file',
|
|
580
|
+
parentKey: null,
|
|
581
|
+
reverseKey: null,
|
|
582
|
+
deletable: false,
|
|
583
|
+
uiSchema: {
|
|
584
|
+
type: 'string',
|
|
585
|
+
title: '{{t("File name", { ns: "file-manager" })}}',
|
|
586
|
+
'x-component': 'Input',
|
|
587
|
+
'x-read-pretty': true,
|
|
588
|
+
},
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
key: 'ftn60zv1rfr',
|
|
592
|
+
name: 'extname',
|
|
593
|
+
type: 'string',
|
|
594
|
+
interface: 'input',
|
|
595
|
+
description: null,
|
|
596
|
+
collectionName: 'tt_amt_file',
|
|
597
|
+
parentKey: null,
|
|
598
|
+
reverseKey: null,
|
|
599
|
+
deletable: false,
|
|
600
|
+
uiSchema: {
|
|
601
|
+
type: 'string',
|
|
602
|
+
title: '{{t("Extension name", { ns: "file-manager" })}}',
|
|
603
|
+
'x-component': 'Input',
|
|
604
|
+
'x-read-pretty': true,
|
|
605
|
+
},
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
key: '59oj6m0r8be',
|
|
609
|
+
name: 'size',
|
|
610
|
+
type: 'integer',
|
|
611
|
+
interface: 'integer',
|
|
612
|
+
description: null,
|
|
613
|
+
collectionName: 'tt_amt_file',
|
|
614
|
+
parentKey: null,
|
|
615
|
+
reverseKey: null,
|
|
616
|
+
deletable: false,
|
|
617
|
+
uiSchema: {
|
|
618
|
+
type: 'number',
|
|
619
|
+
title: '{{t("Size", { ns: "file-manager" })}}',
|
|
620
|
+
'x-component': 'InputNumber',
|
|
621
|
+
'x-read-pretty': true,
|
|
622
|
+
'x-component-props': {
|
|
623
|
+
stringMode: true,
|
|
624
|
+
step: '0',
|
|
625
|
+
},
|
|
626
|
+
},
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
key: 'burt1tfbcjx',
|
|
630
|
+
name: 'mimetype',
|
|
631
|
+
type: 'string',
|
|
632
|
+
interface: 'input',
|
|
633
|
+
description: null,
|
|
634
|
+
collectionName: 'tt_amt_file',
|
|
635
|
+
parentKey: null,
|
|
636
|
+
reverseKey: null,
|
|
637
|
+
deletable: false,
|
|
638
|
+
uiSchema: {
|
|
639
|
+
type: 'string',
|
|
640
|
+
title: '{{t("Mime type", { ns: "file-manager" })}}',
|
|
641
|
+
'x-component': 'Input',
|
|
642
|
+
'x-read-pretty': true,
|
|
643
|
+
},
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
key: '1zfhbqod0i1',
|
|
647
|
+
name: 'path',
|
|
648
|
+
type: 'string',
|
|
649
|
+
interface: 'input',
|
|
650
|
+
description: null,
|
|
651
|
+
collectionName: 'tt_amt_file',
|
|
652
|
+
parentKey: null,
|
|
653
|
+
reverseKey: null,
|
|
654
|
+
deletable: false,
|
|
655
|
+
uiSchema: {
|
|
656
|
+
type: 'string',
|
|
657
|
+
title: '{{t("Path")}}',
|
|
658
|
+
'x-component': 'Input',
|
|
659
|
+
'x-read-pretty': true,
|
|
660
|
+
},
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
key: 'b0bmsmrfqqw',
|
|
664
|
+
name: 'url',
|
|
665
|
+
type: 'string',
|
|
666
|
+
interface: 'input',
|
|
667
|
+
description: null,
|
|
668
|
+
collectionName: 'tt_amt_file',
|
|
669
|
+
parentKey: null,
|
|
670
|
+
reverseKey: null,
|
|
671
|
+
deletable: false,
|
|
672
|
+
uiSchema: {
|
|
673
|
+
type: 'string',
|
|
674
|
+
title: '{{t("URL")}}',
|
|
675
|
+
'x-component': 'Input.URL',
|
|
676
|
+
'x-read-pretty': true,
|
|
677
|
+
},
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
key: 'indgsp9sqqq',
|
|
681
|
+
name: 'preview',
|
|
682
|
+
type: 'string',
|
|
683
|
+
interface: 'url',
|
|
684
|
+
description: null,
|
|
685
|
+
collectionName: 'tt_amt_file',
|
|
686
|
+
parentKey: null,
|
|
687
|
+
reverseKey: null,
|
|
688
|
+
field: 'url',
|
|
689
|
+
deletable: false,
|
|
690
|
+
uiSchema: {
|
|
691
|
+
type: 'string',
|
|
692
|
+
title: '{{t("Preview")}}',
|
|
693
|
+
'x-component': 'Preview',
|
|
694
|
+
'x-read-pretty': true,
|
|
695
|
+
},
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
key: '2p8d1h46x9l',
|
|
699
|
+
name: 'storage',
|
|
700
|
+
type: 'belongsTo',
|
|
701
|
+
interface: null,
|
|
702
|
+
description: null,
|
|
703
|
+
collectionName: 'tt_amt_file',
|
|
704
|
+
parentKey: null,
|
|
705
|
+
reverseKey: null,
|
|
706
|
+
comment: '存储引擎',
|
|
707
|
+
target: 'storages',
|
|
708
|
+
foreignKey: 'storageId',
|
|
709
|
+
deletable: false,
|
|
710
|
+
targetKey: 'id',
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
key: 'im0yegvb5jt',
|
|
714
|
+
name: 'meta',
|
|
715
|
+
type: 'jsonb',
|
|
716
|
+
interface: null,
|
|
717
|
+
description: null,
|
|
718
|
+
collectionName: 'tt_amt_file',
|
|
719
|
+
parentKey: null,
|
|
720
|
+
reverseKey: null,
|
|
721
|
+
deletable: false,
|
|
722
|
+
defaultValue: {},
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
key: 'tjr9nr5thoh',
|
|
726
|
+
name: 'id',
|
|
727
|
+
type: 'bigInt',
|
|
728
|
+
interface: 'id',
|
|
729
|
+
description: null,
|
|
730
|
+
collectionName: 'tt_amt_file',
|
|
731
|
+
parentKey: null,
|
|
732
|
+
reverseKey: null,
|
|
733
|
+
autoIncrement: true,
|
|
734
|
+
primaryKey: true,
|
|
735
|
+
allowNull: false,
|
|
736
|
+
uiSchema: {
|
|
737
|
+
type: 'number',
|
|
738
|
+
title: '{{t("ID")}}',
|
|
739
|
+
'x-component': 'InputNumber',
|
|
740
|
+
'x-read-pretty': true,
|
|
741
|
+
},
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
key: 's48vjiqbjcq',
|
|
745
|
+
name: 'createdAt',
|
|
746
|
+
type: 'date',
|
|
747
|
+
interface: 'createdAt',
|
|
748
|
+
description: null,
|
|
749
|
+
collectionName: 'tt_amt_file',
|
|
750
|
+
parentKey: null,
|
|
751
|
+
reverseKey: null,
|
|
752
|
+
field: 'createdAt',
|
|
753
|
+
uiSchema: {
|
|
754
|
+
type: 'datetime',
|
|
755
|
+
title: '{{t("Created at")}}',
|
|
756
|
+
'x-component': 'DatePicker',
|
|
757
|
+
'x-component-props': {},
|
|
758
|
+
'x-read-pretty': true,
|
|
759
|
+
},
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
key: 'y3t7jii4m8w',
|
|
763
|
+
name: 'createdBy',
|
|
764
|
+
type: 'belongsTo',
|
|
765
|
+
interface: 'createdBy',
|
|
766
|
+
description: null,
|
|
767
|
+
collectionName: 'tt_amt_file',
|
|
768
|
+
parentKey: null,
|
|
769
|
+
reverseKey: null,
|
|
770
|
+
target: 'users',
|
|
771
|
+
foreignKey: 'createdById',
|
|
772
|
+
uiSchema: {
|
|
773
|
+
type: 'object',
|
|
774
|
+
title: '{{t("Created by")}}',
|
|
775
|
+
'x-component': 'RecordPicker',
|
|
776
|
+
'x-component-props': {
|
|
777
|
+
fieldNames: {
|
|
778
|
+
value: 'id',
|
|
779
|
+
label: 'nickname',
|
|
780
|
+
},
|
|
781
|
+
},
|
|
782
|
+
'x-read-pretty': true,
|
|
783
|
+
},
|
|
784
|
+
targetKey: 'id',
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
key: 'z5gvejdbfyb',
|
|
788
|
+
name: 'updatedAt',
|
|
789
|
+
type: 'date',
|
|
790
|
+
interface: 'updatedAt',
|
|
791
|
+
description: null,
|
|
792
|
+
collectionName: 'tt_amt_file',
|
|
793
|
+
parentKey: null,
|
|
794
|
+
reverseKey: null,
|
|
795
|
+
field: 'updatedAt',
|
|
796
|
+
uiSchema: {
|
|
797
|
+
type: 'string',
|
|
798
|
+
title: '{{t("Last updated at")}}',
|
|
799
|
+
'x-component': 'DatePicker',
|
|
800
|
+
'x-component-props': {},
|
|
801
|
+
'x-read-pretty': true,
|
|
802
|
+
},
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
key: 'qgd8zko7b0z',
|
|
806
|
+
name: 'updatedBy',
|
|
807
|
+
type: 'belongsTo',
|
|
808
|
+
interface: 'updatedBy',
|
|
809
|
+
description: null,
|
|
810
|
+
collectionName: 'tt_amt_file',
|
|
811
|
+
parentKey: null,
|
|
812
|
+
reverseKey: null,
|
|
813
|
+
target: 'users',
|
|
814
|
+
foreignKey: 'updatedById',
|
|
815
|
+
uiSchema: {
|
|
816
|
+
type: 'object',
|
|
817
|
+
title: '{{t("Last updated by")}}',
|
|
818
|
+
'x-component': 'RecordPicker',
|
|
819
|
+
'x-component-props': {
|
|
820
|
+
fieldNames: {
|
|
821
|
+
value: 'id',
|
|
822
|
+
label: 'nickname',
|
|
823
|
+
},
|
|
824
|
+
},
|
|
825
|
+
'x-read-pretty': true,
|
|
826
|
+
},
|
|
827
|
+
targetKey: 'id',
|
|
828
|
+
},
|
|
829
|
+
],
|
|
830
|
+
category: [],
|
|
831
|
+
logging: true,
|
|
832
|
+
template: 'file',
|
|
833
|
+
view: false,
|
|
834
|
+
createdBy: true,
|
|
835
|
+
updatedBy: true,
|
|
836
|
+
storage: 'local',
|
|
837
|
+
schema: 'public',
|
|
838
|
+
},
|
|
839
|
+
],
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
export const builtinExpression = {
|
|
843
|
+
collections: [
|
|
844
|
+
{
|
|
845
|
+
key: 'w77iro3197g',
|
|
846
|
+
name: 'tt_amt_exp',
|
|
847
|
+
title: '自动>表达式[表达式表]',
|
|
848
|
+
inherit: false,
|
|
849
|
+
hidden: false,
|
|
850
|
+
description: null,
|
|
851
|
+
fields: [
|
|
852
|
+
{
|
|
853
|
+
key: 'slc2i7yz2ck',
|
|
854
|
+
name: 'engine',
|
|
855
|
+
type: 'string',
|
|
856
|
+
interface: 'radioGroup',
|
|
857
|
+
description: null,
|
|
858
|
+
collectionName: 'tt_amt_exp',
|
|
859
|
+
parentKey: null,
|
|
860
|
+
reverseKey: null,
|
|
861
|
+
uiSchema: {
|
|
862
|
+
type: 'string',
|
|
863
|
+
title: '{{t("Calculation engine")}}',
|
|
864
|
+
'x-component': 'Radio.Group',
|
|
865
|
+
enum: [
|
|
866
|
+
{
|
|
867
|
+
value: 'math.js',
|
|
868
|
+
label: 'Math.js',
|
|
869
|
+
tooltip:
|
|
870
|
+
"{{t('Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types')}}",
|
|
871
|
+
link: 'https://mathjs.org/',
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
value: 'formula.js',
|
|
875
|
+
label: 'Formula.js',
|
|
876
|
+
tooltip: '{{t("Formula.js supports most Microsoft Excel formula functions.")}}',
|
|
877
|
+
link: 'https://formulajs.info/functions/',
|
|
878
|
+
},
|
|
879
|
+
],
|
|
880
|
+
default: 'formula.js',
|
|
881
|
+
},
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
key: 'mlvkdcg2yvq',
|
|
885
|
+
name: 'sourceCollection',
|
|
886
|
+
type: 'string',
|
|
887
|
+
interface: 'select',
|
|
888
|
+
description: null,
|
|
889
|
+
collectionName: 'tt_amt_exp',
|
|
890
|
+
parentKey: null,
|
|
891
|
+
reverseKey: null,
|
|
892
|
+
uiSchema: {
|
|
893
|
+
type: 'string',
|
|
894
|
+
title: '{{t("Collection")}}',
|
|
895
|
+
'x-component': 'CollectionSelect',
|
|
896
|
+
'x-component-props': {},
|
|
897
|
+
},
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
key: 'vdzigakt9ne',
|
|
901
|
+
name: 'expression',
|
|
902
|
+
type: 'text',
|
|
903
|
+
interface: 'expression',
|
|
904
|
+
description: null,
|
|
905
|
+
collectionName: 'tt_amt_exp',
|
|
906
|
+
parentKey: null,
|
|
907
|
+
reverseKey: null,
|
|
908
|
+
uiSchema: {
|
|
909
|
+
type: 'string',
|
|
910
|
+
title: '{{t("Expression")}}',
|
|
911
|
+
'x-component': 'DynamicExpression',
|
|
912
|
+
},
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
key: 'fx72pqt0fjv',
|
|
916
|
+
name: 'id',
|
|
917
|
+
type: 'bigInt',
|
|
918
|
+
interface: 'id',
|
|
919
|
+
description: null,
|
|
920
|
+
collectionName: 'tt_amt_exp',
|
|
921
|
+
parentKey: null,
|
|
922
|
+
reverseKey: null,
|
|
923
|
+
autoIncrement: true,
|
|
924
|
+
primaryKey: true,
|
|
925
|
+
allowNull: false,
|
|
926
|
+
uiSchema: {
|
|
927
|
+
type: 'number',
|
|
928
|
+
title: '{{t("ID")}}',
|
|
929
|
+
'x-component': 'InputNumber',
|
|
930
|
+
'x-read-pretty': true,
|
|
931
|
+
},
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
key: 'owiio66cw1u',
|
|
935
|
+
name: 'createdAt',
|
|
936
|
+
type: 'date',
|
|
937
|
+
interface: 'createdAt',
|
|
938
|
+
description: null,
|
|
939
|
+
collectionName: 'tt_amt_exp',
|
|
940
|
+
parentKey: null,
|
|
941
|
+
reverseKey: null,
|
|
942
|
+
field: 'createdAt',
|
|
943
|
+
uiSchema: {
|
|
944
|
+
type: 'datetime',
|
|
945
|
+
title: '{{t("Created at")}}',
|
|
946
|
+
'x-component': 'DatePicker',
|
|
947
|
+
'x-component-props': {},
|
|
948
|
+
'x-read-pretty': true,
|
|
949
|
+
},
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
key: '9fu8kmc69dj',
|
|
953
|
+
name: 'createdBy',
|
|
954
|
+
type: 'belongsTo',
|
|
955
|
+
interface: 'createdBy',
|
|
956
|
+
description: null,
|
|
957
|
+
collectionName: 'tt_amt_exp',
|
|
958
|
+
parentKey: null,
|
|
959
|
+
reverseKey: null,
|
|
960
|
+
target: 'users',
|
|
961
|
+
foreignKey: 'createdById',
|
|
962
|
+
uiSchema: {
|
|
963
|
+
type: 'object',
|
|
964
|
+
title: '{{t("Created by")}}',
|
|
965
|
+
'x-component': 'RecordPicker',
|
|
966
|
+
'x-component-props': {
|
|
967
|
+
fieldNames: {
|
|
968
|
+
value: 'id',
|
|
969
|
+
label: 'nickname',
|
|
970
|
+
},
|
|
971
|
+
},
|
|
972
|
+
'x-read-pretty': true,
|
|
973
|
+
},
|
|
974
|
+
targetKey: 'id',
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
key: 'uie8q16z2jj',
|
|
978
|
+
name: 'updatedAt',
|
|
979
|
+
type: 'date',
|
|
980
|
+
interface: 'updatedAt',
|
|
981
|
+
description: null,
|
|
982
|
+
collectionName: 'tt_amt_exp',
|
|
983
|
+
parentKey: null,
|
|
984
|
+
reverseKey: null,
|
|
985
|
+
field: 'updatedAt',
|
|
986
|
+
uiSchema: {
|
|
987
|
+
type: 'string',
|
|
988
|
+
title: '{{t("Last updated at")}}',
|
|
989
|
+
'x-component': 'DatePicker',
|
|
990
|
+
'x-component-props': {},
|
|
991
|
+
'x-read-pretty': true,
|
|
992
|
+
},
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
key: '6jzyuc1jzro',
|
|
996
|
+
name: 'updatedBy',
|
|
997
|
+
type: 'belongsTo',
|
|
998
|
+
interface: 'updatedBy',
|
|
999
|
+
description: null,
|
|
1000
|
+
collectionName: 'tt_amt_exp',
|
|
1001
|
+
parentKey: null,
|
|
1002
|
+
reverseKey: null,
|
|
1003
|
+
target: 'users',
|
|
1004
|
+
foreignKey: 'updatedById',
|
|
1005
|
+
uiSchema: {
|
|
1006
|
+
type: 'object',
|
|
1007
|
+
title: '{{t("Last updated by")}}',
|
|
1008
|
+
'x-component': 'RecordPicker',
|
|
1009
|
+
'x-component-props': {
|
|
1010
|
+
fieldNames: {
|
|
1011
|
+
value: 'id',
|
|
1012
|
+
label: 'nickname',
|
|
1013
|
+
},
|
|
1014
|
+
},
|
|
1015
|
+
'x-read-pretty': true,
|
|
1016
|
+
},
|
|
1017
|
+
targetKey: 'id',
|
|
1018
|
+
},
|
|
1019
|
+
],
|
|
1020
|
+
category: [],
|
|
1021
|
+
logging: true,
|
|
1022
|
+
template: 'expression',
|
|
1023
|
+
view: false,
|
|
1024
|
+
createdBy: true,
|
|
1025
|
+
updatedBy: true,
|
|
1026
|
+
createdAt: true,
|
|
1027
|
+
updatedAt: true,
|
|
1028
|
+
sortable: true,
|
|
1029
|
+
schema: 'public',
|
|
1030
|
+
},
|
|
1031
|
+
],
|
|
1032
|
+
};
|
|
1033
|
+
|
|
1034
|
+
//普通表单表场景,无关系字段情况
|
|
1035
|
+
export const generalWithNoRelationalFields = {
|
|
1036
|
+
collections: [
|
|
1037
|
+
{
|
|
1038
|
+
key: '86lpobjxamt',
|
|
1039
|
+
name: 'tt_amt_org',
|
|
1040
|
+
title: '自动>组织[普通表]',
|
|
1041
|
+
inherit: false,
|
|
1042
|
+
hidden: false,
|
|
1043
|
+
fields: [
|
|
1044
|
+
{
|
|
1045
|
+
key: 'ohxa8xp9amt',
|
|
1046
|
+
name: 'id',
|
|
1047
|
+
type: 'bigInt',
|
|
1048
|
+
interface: 'id',
|
|
1049
|
+
collectionName: 'tt_amt_org',
|
|
1050
|
+
parentKey: null,
|
|
1051
|
+
reverseKey: null,
|
|
1052
|
+
autoIncrement: true,
|
|
1053
|
+
primaryKey: true,
|
|
1054
|
+
allowNull: false,
|
|
1055
|
+
uiSchema: {
|
|
1056
|
+
type: 'number',
|
|
1057
|
+
title: '{{t("ID")}}',
|
|
1058
|
+
'x-component': 'InputNumber',
|
|
1059
|
+
'x-read-pretty': true,
|
|
1060
|
+
},
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
key: 'qjit9pcvamt',
|
|
1064
|
+
name: 'createdAt',
|
|
1065
|
+
type: 'date',
|
|
1066
|
+
interface: 'createdAt',
|
|
1067
|
+
collectionName: 'tt_amt_org',
|
|
1068
|
+
parentKey: null,
|
|
1069
|
+
reverseKey: null,
|
|
1070
|
+
field: 'createdAt',
|
|
1071
|
+
uiSchema: {
|
|
1072
|
+
type: 'datetime',
|
|
1073
|
+
title: '{{t("Created at")}}',
|
|
1074
|
+
'x-component': 'DatePicker',
|
|
1075
|
+
'x-component-props': {},
|
|
1076
|
+
'x-read-pretty': true,
|
|
1077
|
+
},
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
key: 'vijs3wcnamt',
|
|
1081
|
+
name: 'createdBy',
|
|
1082
|
+
type: 'belongsTo',
|
|
1083
|
+
interface: 'createdBy',
|
|
1084
|
+
collectionName: 'tt_amt_org',
|
|
1085
|
+
parentKey: null,
|
|
1086
|
+
reverseKey: null,
|
|
1087
|
+
target: 'users',
|
|
1088
|
+
foreignKey: 'createdById',
|
|
1089
|
+
uiSchema: {
|
|
1090
|
+
type: 'object',
|
|
1091
|
+
title: '{{t("Created by")}}',
|
|
1092
|
+
'x-component': 'AssociationField',
|
|
1093
|
+
'x-component-props': {
|
|
1094
|
+
fieldNames: {
|
|
1095
|
+
value: 'id',
|
|
1096
|
+
label: 'nickname',
|
|
1097
|
+
},
|
|
1098
|
+
},
|
|
1099
|
+
'x-read-pretty': true,
|
|
1100
|
+
},
|
|
1101
|
+
targetKey: 'id',
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
key: 'zsebjtwiamt',
|
|
1105
|
+
name: 'updatedAt',
|
|
1106
|
+
type: 'date',
|
|
1107
|
+
interface: 'updatedAt',
|
|
1108
|
+
collectionName: 'tt_amt_org',
|
|
1109
|
+
parentKey: null,
|
|
1110
|
+
reverseKey: null,
|
|
1111
|
+
field: 'updatedAt',
|
|
1112
|
+
uiSchema: {
|
|
1113
|
+
type: 'string',
|
|
1114
|
+
title: '{{t("Last updated at")}}',
|
|
1115
|
+
'x-component': 'DatePicker',
|
|
1116
|
+
'x-component-props': {},
|
|
1117
|
+
'x-read-pretty': true,
|
|
1118
|
+
},
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
key: 'fa4c74phamt',
|
|
1122
|
+
name: 'updatedBy',
|
|
1123
|
+
type: 'belongsTo',
|
|
1124
|
+
interface: 'updatedBy',
|
|
1125
|
+
collectionName: 'tt_amt_org',
|
|
1126
|
+
parentKey: null,
|
|
1127
|
+
reverseKey: null,
|
|
1128
|
+
target: 'users',
|
|
1129
|
+
foreignKey: 'updatedById',
|
|
1130
|
+
uiSchema: {
|
|
1131
|
+
type: 'object',
|
|
1132
|
+
title: '{{t("Last updated by")}}',
|
|
1133
|
+
'x-component': 'AssociationField',
|
|
1134
|
+
'x-component-props': {
|
|
1135
|
+
fieldNames: {
|
|
1136
|
+
value: 'id',
|
|
1137
|
+
label: 'nickname',
|
|
1138
|
+
},
|
|
1139
|
+
},
|
|
1140
|
+
'x-read-pretty': true,
|
|
1141
|
+
},
|
|
1142
|
+
targetKey: 'id',
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
key: 'mv6h7f8lamt',
|
|
1146
|
+
name: 'orgcode',
|
|
1147
|
+
type: 'sequence',
|
|
1148
|
+
interface: 'sequence',
|
|
1149
|
+
collectionName: 'tt_amt_org',
|
|
1150
|
+
parentKey: null,
|
|
1151
|
+
reverseKey: null,
|
|
1152
|
+
patterns: [
|
|
1153
|
+
{
|
|
1154
|
+
type: 'string',
|
|
1155
|
+
options: {
|
|
1156
|
+
value: '区域编码',
|
|
1157
|
+
},
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
type: 'integer',
|
|
1161
|
+
options: {
|
|
1162
|
+
digits: 9,
|
|
1163
|
+
start: 1,
|
|
1164
|
+
key: 57450,
|
|
1165
|
+
},
|
|
1166
|
+
},
|
|
1167
|
+
],
|
|
1168
|
+
uiSchema: {
|
|
1169
|
+
type: 'string',
|
|
1170
|
+
'x-component': 'Input',
|
|
1171
|
+
'x-component-props': {},
|
|
1172
|
+
title: '公司编号(自动编码)',
|
|
1173
|
+
},
|
|
1174
|
+
inputable: false,
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
key: '44u5zoyyamt',
|
|
1178
|
+
name: 'orgname',
|
|
1179
|
+
type: 'string',
|
|
1180
|
+
interface: 'input',
|
|
1181
|
+
collectionName: 'tt_amt_org',
|
|
1182
|
+
parentKey: null,
|
|
1183
|
+
reverseKey: null,
|
|
1184
|
+
uiSchema: {
|
|
1185
|
+
type: 'string',
|
|
1186
|
+
'x-component': 'Input',
|
|
1187
|
+
title: '公司名称(单行文本)',
|
|
1188
|
+
},
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
key: 'tdq82bb0amt',
|
|
1192
|
+
name: 'address',
|
|
1193
|
+
type: 'text',
|
|
1194
|
+
interface: 'textarea',
|
|
1195
|
+
collectionName: 'tt_amt_org',
|
|
1196
|
+
parentKey: null,
|
|
1197
|
+
reverseKey: null,
|
|
1198
|
+
uiSchema: {
|
|
1199
|
+
type: 'string',
|
|
1200
|
+
'x-component': 'Input.TextArea',
|
|
1201
|
+
title: '公司地址(多行文本)',
|
|
1202
|
+
},
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
key: '10xi6i24amt',
|
|
1206
|
+
name: 'phone',
|
|
1207
|
+
type: 'string',
|
|
1208
|
+
interface: 'phone',
|
|
1209
|
+
collectionName: 'tt_amt_org',
|
|
1210
|
+
parentKey: null,
|
|
1211
|
+
reverseKey: null,
|
|
1212
|
+
uiSchema: {
|
|
1213
|
+
type: 'string',
|
|
1214
|
+
'x-component': 'Input',
|
|
1215
|
+
'x-component-props': {
|
|
1216
|
+
type: 'tel',
|
|
1217
|
+
},
|
|
1218
|
+
title: '负责人电话(手机号码)',
|
|
1219
|
+
},
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
key: 'n3ykqhe4amt',
|
|
1223
|
+
name: 'email',
|
|
1224
|
+
type: 'string',
|
|
1225
|
+
interface: 'email',
|
|
1226
|
+
collectionName: 'tt_amt_org',
|
|
1227
|
+
parentKey: null,
|
|
1228
|
+
reverseKey: null,
|
|
1229
|
+
uiSchema: {
|
|
1230
|
+
type: 'string',
|
|
1231
|
+
'x-component': 'Input',
|
|
1232
|
+
'x-validator': 'email',
|
|
1233
|
+
title: '电子邮箱(电子邮箱)',
|
|
1234
|
+
},
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
key: '5ddcgbpqamt',
|
|
1238
|
+
name: 'staffnum',
|
|
1239
|
+
type: 'bigInt',
|
|
1240
|
+
interface: 'integer',
|
|
1241
|
+
collectionName: 'tt_amt_org',
|
|
1242
|
+
parentKey: null,
|
|
1243
|
+
reverseKey: null,
|
|
1244
|
+
uiSchema: {
|
|
1245
|
+
type: 'number',
|
|
1246
|
+
'x-component': 'InputNumber',
|
|
1247
|
+
'x-component-props': {
|
|
1248
|
+
stringMode: true,
|
|
1249
|
+
step: '1',
|
|
1250
|
+
},
|
|
1251
|
+
'x-validator': 'integer',
|
|
1252
|
+
title: '员工人数(整数)',
|
|
1253
|
+
},
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
key: 'z59sf4ilamt',
|
|
1257
|
+
name: 'insurednum',
|
|
1258
|
+
type: 'bigInt',
|
|
1259
|
+
interface: 'integer',
|
|
1260
|
+
collectionName: 'tt_amt_org',
|
|
1261
|
+
parentKey: null,
|
|
1262
|
+
reverseKey: null,
|
|
1263
|
+
uiSchema: {
|
|
1264
|
+
type: 'number',
|
|
1265
|
+
'x-component': 'InputNumber',
|
|
1266
|
+
'x-component-props': {
|
|
1267
|
+
stringMode: true,
|
|
1268
|
+
step: '1',
|
|
1269
|
+
},
|
|
1270
|
+
'x-validator': 'integer',
|
|
1271
|
+
title: '参保人数(整数)',
|
|
1272
|
+
},
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
key: 'ecvb3a8xamt',
|
|
1276
|
+
name: 'regcapital',
|
|
1277
|
+
type: 'double',
|
|
1278
|
+
interface: 'number',
|
|
1279
|
+
collectionName: 'tt_amt_org',
|
|
1280
|
+
parentKey: null,
|
|
1281
|
+
reverseKey: null,
|
|
1282
|
+
uiSchema: {
|
|
1283
|
+
'x-component-props': {
|
|
1284
|
+
step: '0.0001',
|
|
1285
|
+
stringMode: true,
|
|
1286
|
+
},
|
|
1287
|
+
type: 'number',
|
|
1288
|
+
'x-component': 'InputNumber',
|
|
1289
|
+
title: '注册资本(数字)',
|
|
1290
|
+
},
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
key: 'ierg1fbvamt',
|
|
1294
|
+
name: 'paidcapital',
|
|
1295
|
+
type: 'double',
|
|
1296
|
+
interface: 'number',
|
|
1297
|
+
collectionName: 'tt_amt_org',
|
|
1298
|
+
parentKey: null,
|
|
1299
|
+
reverseKey: null,
|
|
1300
|
+
uiSchema: {
|
|
1301
|
+
'x-component-props': {
|
|
1302
|
+
step: '0.0001',
|
|
1303
|
+
stringMode: true,
|
|
1304
|
+
},
|
|
1305
|
+
type: 'number',
|
|
1306
|
+
'x-component': 'InputNumber',
|
|
1307
|
+
title: '实缴资本(数字)',
|
|
1308
|
+
},
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
key: '46kjnywaamt',
|
|
1312
|
+
name: 'insuranceratio',
|
|
1313
|
+
type: 'float',
|
|
1314
|
+
interface: 'percent',
|
|
1315
|
+
collectionName: 'tt_amt_org',
|
|
1316
|
+
parentKey: null,
|
|
1317
|
+
reverseKey: null,
|
|
1318
|
+
uiSchema: {
|
|
1319
|
+
'x-component-props': {
|
|
1320
|
+
step: '0.01',
|
|
1321
|
+
stringMode: true,
|
|
1322
|
+
addonAfter: '%',
|
|
1323
|
+
},
|
|
1324
|
+
type: 'string',
|
|
1325
|
+
'x-component': 'Percent',
|
|
1326
|
+
title: '参保占比(百分比)',
|
|
1327
|
+
},
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
key: '8j2vkys9amt',
|
|
1331
|
+
name: 'isenable',
|
|
1332
|
+
type: 'boolean',
|
|
1333
|
+
interface: 'checkbox',
|
|
1334
|
+
collectionName: 'tt_amt_org',
|
|
1335
|
+
parentKey: null,
|
|
1336
|
+
reverseKey: null,
|
|
1337
|
+
uiSchema: {
|
|
1338
|
+
type: 'boolean',
|
|
1339
|
+
'x-component': 'Checkbox',
|
|
1340
|
+
title: '是否启用(勾选)',
|
|
1341
|
+
},
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
key: '6f480de5amt',
|
|
1345
|
+
name: 'status_singleselect',
|
|
1346
|
+
type: 'string',
|
|
1347
|
+
interface: 'select',
|
|
1348
|
+
collectionName: 'tt_amt_org',
|
|
1349
|
+
parentKey: null,
|
|
1350
|
+
reverseKey: null,
|
|
1351
|
+
uiSchema: {
|
|
1352
|
+
enum: [
|
|
1353
|
+
{
|
|
1354
|
+
value: '1',
|
|
1355
|
+
label: '存续',
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
value: '2',
|
|
1359
|
+
label: '在业',
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
value: '3',
|
|
1363
|
+
label: '吊销',
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
value: '4',
|
|
1367
|
+
label: '注销',
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
value: '5',
|
|
1371
|
+
label: '迁入',
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
value: '6',
|
|
1375
|
+
label: '迁出',
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
value: '7',
|
|
1379
|
+
label: '停业',
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
value: '8',
|
|
1383
|
+
label: '清算',
|
|
1384
|
+
},
|
|
1385
|
+
],
|
|
1386
|
+
type: 'string',
|
|
1387
|
+
'x-component': 'Select',
|
|
1388
|
+
title: '公司状态(下拉单选)',
|
|
1389
|
+
},
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
key: 'fcx8cw1ramt',
|
|
1393
|
+
name: 'range_multipleselect',
|
|
1394
|
+
type: 'array',
|
|
1395
|
+
interface: 'multipleSelect',
|
|
1396
|
+
collectionName: 'tt_amt_org',
|
|
1397
|
+
parentKey: null,
|
|
1398
|
+
reverseKey: null,
|
|
1399
|
+
uiSchema: {
|
|
1400
|
+
enum: [
|
|
1401
|
+
{
|
|
1402
|
+
value: 'F3134',
|
|
1403
|
+
label: '软件销售',
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
value: 'I3006',
|
|
1407
|
+
label: '软件开发',
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
value: 'I3007',
|
|
1411
|
+
label: '人工智能基础软件开发',
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
value: 'I3008',
|
|
1415
|
+
label: '人工智能应用软件开发',
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
value: 'I3010',
|
|
1419
|
+
label: '软件外包服务',
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
value: 'I3011',
|
|
1423
|
+
label: '网络与信息安全软件开发',
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
value: 'I3012',
|
|
1427
|
+
label: '人工智能理论与算法软件开发',
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
value: 'I3014',
|
|
1431
|
+
label: '数字文化创意软件开发',
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
value: 'I3027',
|
|
1435
|
+
label: '信息技术咨询服务',
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
value: 'I3032',
|
|
1439
|
+
label: '数据处理服务',
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
value: 'I3034',
|
|
1443
|
+
label: '计算机系统服务',
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
value: 'L2032',
|
|
1447
|
+
label: '信息咨询服务(不含许可类信息咨询服务)',
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
value: 'L2095',
|
|
1451
|
+
label: '企业管理咨询',
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
value: 'M2070',
|
|
1455
|
+
label: '技术服务、技术开发、技术咨询、技术交流、技术转让、技术推广',
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
value: 'O3010',
|
|
1459
|
+
label: '咨询策划服务',
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
value: 'P1029',
|
|
1463
|
+
label: '业务培训(不含教育培训、职业技能培训等需取得许可的培训)',
|
|
1464
|
+
},
|
|
1465
|
+
],
|
|
1466
|
+
type: 'array',
|
|
1467
|
+
'x-component': 'Select',
|
|
1468
|
+
'x-component-props': {
|
|
1469
|
+
mode: 'multiple',
|
|
1470
|
+
},
|
|
1471
|
+
title: '经营范围(下拉多选)',
|
|
1472
|
+
},
|
|
1473
|
+
defaultValue: [],
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
key: 'z71al7aaamt',
|
|
1477
|
+
name: 'status_radio',
|
|
1478
|
+
type: 'string',
|
|
1479
|
+
interface: 'radioGroup',
|
|
1480
|
+
collectionName: 'tt_amt_org',
|
|
1481
|
+
parentKey: null,
|
|
1482
|
+
reverseKey: null,
|
|
1483
|
+
uiSchema: {
|
|
1484
|
+
enum: [
|
|
1485
|
+
{
|
|
1486
|
+
value: '1',
|
|
1487
|
+
label: '存续',
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
value: '2',
|
|
1491
|
+
label: '在业',
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
value: '3',
|
|
1495
|
+
label: '吊销',
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
value: '4',
|
|
1499
|
+
label: '注销',
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
value: '5',
|
|
1503
|
+
label: '迁入',
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
value: '6',
|
|
1507
|
+
label: '迁出',
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
value: '7',
|
|
1511
|
+
label: '停业',
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
value: '8',
|
|
1515
|
+
label: '清算',
|
|
1516
|
+
},
|
|
1517
|
+
],
|
|
1518
|
+
type: 'string',
|
|
1519
|
+
'x-component': 'Radio.Group',
|
|
1520
|
+
title: '公司状态(单选)',
|
|
1521
|
+
},
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
key: 'x8v9qf95amt',
|
|
1525
|
+
name: 'range_check',
|
|
1526
|
+
type: 'array',
|
|
1527
|
+
interface: 'checkboxGroup',
|
|
1528
|
+
collectionName: 'tt_amt_org',
|
|
1529
|
+
parentKey: null,
|
|
1530
|
+
reverseKey: null,
|
|
1531
|
+
uiSchema: {
|
|
1532
|
+
enum: [
|
|
1533
|
+
{
|
|
1534
|
+
value: 'F3134',
|
|
1535
|
+
label: '软件销售',
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
value: 'I3006',
|
|
1539
|
+
label: '软件开发',
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
value: 'I3007',
|
|
1543
|
+
label: '人工智能基础软件开发',
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
value: 'I3008',
|
|
1547
|
+
label: '人工智能应用软件开发',
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
value: 'I3010',
|
|
1551
|
+
label: '软件外包服务',
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
value: 'I3011',
|
|
1555
|
+
label: '网络与信息安全软件开发',
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
value: 'I3012',
|
|
1559
|
+
label: '人工智能理论与算法软件开发',
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
value: 'I3014',
|
|
1563
|
+
label: '数字文化创意软件开发',
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
value: 'I3027',
|
|
1567
|
+
label: '信息技术咨询服务',
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
value: 'I3032',
|
|
1571
|
+
label: '数据处理服务',
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
value: 'I3034',
|
|
1575
|
+
label: '计算机系统服务',
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
value: 'L2032',
|
|
1579
|
+
label: '信息咨询服务(不含许可类信息咨询服务)',
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
value: 'L2095',
|
|
1583
|
+
label: '企业管理咨询',
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
value: 'M2070',
|
|
1587
|
+
label: '技术服务、技术开发、技术咨询、技术交流、技术转让、技术推广',
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
value: 'O3010',
|
|
1591
|
+
label: '咨询策划服务',
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
value: 'P1029',
|
|
1595
|
+
label: '业务培训(不含教育培训、职业技能培训等需取得许可的培训)',
|
|
1596
|
+
},
|
|
1597
|
+
],
|
|
1598
|
+
type: 'string',
|
|
1599
|
+
'x-component': 'Checkbox.Group',
|
|
1600
|
+
title: '经营范围(复选)',
|
|
1601
|
+
},
|
|
1602
|
+
defaultValue: [],
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
key: 'c50l1zguamt',
|
|
1606
|
+
name: 'range_markdown',
|
|
1607
|
+
type: 'text',
|
|
1608
|
+
interface: 'markdown',
|
|
1609
|
+
collectionName: 'tt_amt_org',
|
|
1610
|
+
parentKey: null,
|
|
1611
|
+
reverseKey: null,
|
|
1612
|
+
uiSchema: {
|
|
1613
|
+
type: 'string',
|
|
1614
|
+
'x-component': 'Markdown',
|
|
1615
|
+
title: '经营范围(Markdown)',
|
|
1616
|
+
},
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
key: 'msj1qa4damt',
|
|
1620
|
+
name: 'range_richtext',
|
|
1621
|
+
type: 'text',
|
|
1622
|
+
interface: 'richText',
|
|
1623
|
+
collectionName: 'tt_amt_org',
|
|
1624
|
+
parentKey: null,
|
|
1625
|
+
reverseKey: null,
|
|
1626
|
+
uiSchema: {
|
|
1627
|
+
type: 'string',
|
|
1628
|
+
'x-component': 'RichText',
|
|
1629
|
+
title: '经营范围(富文本)',
|
|
1630
|
+
},
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
key: 'q755hkxmamt',
|
|
1634
|
+
name: 'establishdate',
|
|
1635
|
+
type: 'date',
|
|
1636
|
+
interface: 'datetime',
|
|
1637
|
+
collectionName: 'tt_amt_org',
|
|
1638
|
+
parentKey: null,
|
|
1639
|
+
reverseKey: null,
|
|
1640
|
+
uiSchema: {
|
|
1641
|
+
'x-component-props': {
|
|
1642
|
+
dateFormat: 'YYYY-MM-DD',
|
|
1643
|
+
gmt: false,
|
|
1644
|
+
showTime: false,
|
|
1645
|
+
},
|
|
1646
|
+
type: 'string',
|
|
1647
|
+
'x-component': 'DatePicker',
|
|
1648
|
+
title: '成立日期(日期)',
|
|
1649
|
+
},
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
key: '9kn4ujeramt',
|
|
1653
|
+
name: 'range_json',
|
|
1654
|
+
type: 'json',
|
|
1655
|
+
interface: 'json',
|
|
1656
|
+
collectionName: 'tt_amt_org',
|
|
1657
|
+
parentKey: null,
|
|
1658
|
+
reverseKey: null,
|
|
1659
|
+
defaultValue: null,
|
|
1660
|
+
uiSchema: {
|
|
1661
|
+
type: 'object',
|
|
1662
|
+
'x-component': 'Input.JSON',
|
|
1663
|
+
'x-component-props': {
|
|
1664
|
+
autoSize: {
|
|
1665
|
+
minRows: 5,
|
|
1666
|
+
},
|
|
1667
|
+
},
|
|
1668
|
+
default: null,
|
|
1669
|
+
title: '经营范围(JSON)',
|
|
1670
|
+
},
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
key: 'vqcsj7htamt',
|
|
1674
|
+
name: 'url',
|
|
1675
|
+
type: 'string',
|
|
1676
|
+
interface: 'url',
|
|
1677
|
+
collectionName: 'tt_amt_org',
|
|
1678
|
+
parentKey: null,
|
|
1679
|
+
reverseKey: null,
|
|
1680
|
+
uiSchema: {
|
|
1681
|
+
type: 'string',
|
|
1682
|
+
title: '官网地址(URL)',
|
|
1683
|
+
'x-component': 'Input.URL',
|
|
1684
|
+
},
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
key: '0naiw2nq4j0',
|
|
1688
|
+
name: 'insuranceratio_formula',
|
|
1689
|
+
type: 'formula',
|
|
1690
|
+
interface: 'formula',
|
|
1691
|
+
collectionName: 'tt_amt_org',
|
|
1692
|
+
parentKey: null,
|
|
1693
|
+
reverseKey: null,
|
|
1694
|
+
dataType: 'double',
|
|
1695
|
+
uiSchema: {
|
|
1696
|
+
'x-component-props': {
|
|
1697
|
+
step: '0.01',
|
|
1698
|
+
stringMode: true,
|
|
1699
|
+
},
|
|
1700
|
+
type: 'number',
|
|
1701
|
+
'x-component': 'Formula.Result',
|
|
1702
|
+
'x-read-pretty': true,
|
|
1703
|
+
title: '参保占比(公式)',
|
|
1704
|
+
},
|
|
1705
|
+
engine: 'math.js',
|
|
1706
|
+
expression: '100*{{insurednum}}/{{staffnum}}',
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
key: 'fd9sqp8usoj',
|
|
1710
|
+
name: 'sharesnum',
|
|
1711
|
+
type: 'bigInt',
|
|
1712
|
+
interface: 'integer',
|
|
1713
|
+
collectionName: 'tt_amt_org',
|
|
1714
|
+
parentKey: null,
|
|
1715
|
+
reverseKey: null,
|
|
1716
|
+
uiSchema: {
|
|
1717
|
+
type: 'number',
|
|
1718
|
+
'x-component': 'InputNumber',
|
|
1719
|
+
'x-component-props': {
|
|
1720
|
+
stringMode: true,
|
|
1721
|
+
step: '1',
|
|
1722
|
+
},
|
|
1723
|
+
'x-validator': 'integer',
|
|
1724
|
+
title: '股票数量(整数)',
|
|
1725
|
+
},
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
key: 'fd9sqp8uamt',
|
|
1729
|
+
name: 'testdataid',
|
|
1730
|
+
type: 'bigInt',
|
|
1731
|
+
interface: 'integer',
|
|
1732
|
+
collectionName: 'tt_amt_org',
|
|
1733
|
+
parentKey: null,
|
|
1734
|
+
reverseKey: null,
|
|
1735
|
+
uiSchema: {
|
|
1736
|
+
type: 'number',
|
|
1737
|
+
'x-component': 'InputNumber',
|
|
1738
|
+
'x-component-props': {
|
|
1739
|
+
stringMode: true,
|
|
1740
|
+
step: '1',
|
|
1741
|
+
},
|
|
1742
|
+
'x-validator': 'integer',
|
|
1743
|
+
title: '测试数据id',
|
|
1744
|
+
},
|
|
1745
|
+
},
|
|
1746
|
+
],
|
|
1747
|
+
category: [],
|
|
1748
|
+
logging: true,
|
|
1749
|
+
autoGenId: true,
|
|
1750
|
+
createdBy: true,
|
|
1751
|
+
updatedBy: true,
|
|
1752
|
+
createdAt: true,
|
|
1753
|
+
updatedAt: true,
|
|
1754
|
+
sortable: true,
|
|
1755
|
+
template: 'general',
|
|
1756
|
+
},
|
|
1757
|
+
],
|
|
1758
|
+
};
|
|
1759
|
+
|
|
1760
|
+
export const generalWithNoRelationalFieldsData = [
|
|
1761
|
+
{
|
|
1762
|
+
createdAt: '2023-07-16T21:30:58.000Z',
|
|
1763
|
+
updatedAt: '2023-06-20T03:32:01.000Z',
|
|
1764
|
+
createdById: 0,
|
|
1765
|
+
updatedById: 3,
|
|
1766
|
+
testdataid: 86,
|
|
1767
|
+
orgcode: '350086',
|
|
1768
|
+
orgname: 'Black Logistic LLC',
|
|
1769
|
+
address: '闵行区宾川路314号',
|
|
1770
|
+
phone: '21-040-5877',
|
|
1771
|
+
email: 'cwlam@mail.com',
|
|
1772
|
+
url: 'http://www.osara.co.jp/Food',
|
|
1773
|
+
staffnum: 25,
|
|
1774
|
+
regcapital: 85.8799,
|
|
1775
|
+
paidcapital: 297.1762,
|
|
1776
|
+
insuranceratio: 29.93,
|
|
1777
|
+
isenable: true,
|
|
1778
|
+
status_singleselect: '1',
|
|
1779
|
+
range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027'],
|
|
1780
|
+
status_radio: '4',
|
|
1781
|
+
range_check: ['I3010', 'I3011', 'I3014', 'I3027', 'L2095', 'M2070', 'O3010'],
|
|
1782
|
+
establishdate: '2022-03-17T19:44:50.000Z',
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
createdAt: '2023-07-13T13:20:10.000Z',
|
|
1786
|
+
updatedAt: '2023-07-10T02:25:11.737Z',
|
|
1787
|
+
createdById: 4,
|
|
1788
|
+
updatedById: null,
|
|
1789
|
+
testdataid: 41,
|
|
1790
|
+
orgcode: '230041',
|
|
1791
|
+
orgname: '孙記有限责任公司',
|
|
1792
|
+
address: '770 Shennan E Rd, Cai Wu Wei, Luohu District',
|
|
1793
|
+
phone: '755-4939-4147',
|
|
1794
|
+
email: 'kars16@icloud.com',
|
|
1795
|
+
url: 'http://www.lamhy.org/HouseholdKitchenAppliances',
|
|
1796
|
+
staffnum: 67,
|
|
1797
|
+
regcapital: 14.9121,
|
|
1798
|
+
paidcapital: 215.5018,
|
|
1799
|
+
insuranceratio: 42.26,
|
|
1800
|
+
isenable: true,
|
|
1801
|
+
status_singleselect: '7',
|
|
1802
|
+
range_multipleselect: [
|
|
1803
|
+
'F3134',
|
|
1804
|
+
'I3006',
|
|
1805
|
+
'I3007',
|
|
1806
|
+
'I3008',
|
|
1807
|
+
'I3012',
|
|
1808
|
+
'I3014',
|
|
1809
|
+
'I3027',
|
|
1810
|
+
'I3034',
|
|
1811
|
+
'L2095',
|
|
1812
|
+
'M2070',
|
|
1813
|
+
'P1029',
|
|
1814
|
+
],
|
|
1815
|
+
status_radio: '1',
|
|
1816
|
+
range_check: ['F3134', 'I3010', 'I3032', 'I3034', 'O3010', 'P1029'],
|
|
1817
|
+
establishdate: '2022-08-01T01:51:06.000Z',
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
createdAt: '2023-03-14T23:05:00.000Z',
|
|
1821
|
+
updatedAt: '2023-07-10T02:25:11.729Z',
|
|
1822
|
+
createdById: null,
|
|
1823
|
+
updatedById: 4,
|
|
1824
|
+
testdataid: 27,
|
|
1825
|
+
orgcode: '340027',
|
|
1826
|
+
orgname: 'Lisa Telecommunication Inc.',
|
|
1827
|
+
address: '43 Zhongshan 5th Rd, Zimaling Shangquan',
|
|
1828
|
+
phone: '760-7344-2889',
|
|
1829
|
+
email: 'onnaku@gmail.com',
|
|
1830
|
+
url: 'https://video.ziyihe404.net/CenturionGardenOutdoor',
|
|
1831
|
+
staffnum: 104,
|
|
1832
|
+
regcapital: 237.9354,
|
|
1833
|
+
paidcapital: 131.6008,
|
|
1834
|
+
insuranceratio: 4.22,
|
|
1835
|
+
isenable: true,
|
|
1836
|
+
status_singleselect: '2',
|
|
1837
|
+
range_multipleselect: ['F3134', 'I3032', 'I3034', 'L2032', 'M2070', 'O3010'],
|
|
1838
|
+
status_radio: '6',
|
|
1839
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3012', 'M2070', 'O3010'],
|
|
1840
|
+
establishdate: '2021-02-19T00:02:48.000Z',
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
createdAt: '2023-08-20T18:07:24.000Z',
|
|
1844
|
+
updatedAt: '2023-07-10T02:25:11.741Z',
|
|
1845
|
+
createdById: 5,
|
|
1846
|
+
updatedById: null,
|
|
1847
|
+
testdataid: 77,
|
|
1848
|
+
orgcode: '450077',
|
|
1849
|
+
orgname: '子异有限责任公司',
|
|
1850
|
+
address: '619 4th Section Renmin South Road, Jinjiang District',
|
|
1851
|
+
phone: '174-6088-1418',
|
|
1852
|
+
email: 'taoshihan1@hotmail.com',
|
|
1853
|
+
url: 'https://www.litc908.jp/ArtsHandicraftsSewing',
|
|
1854
|
+
staffnum: 37,
|
|
1855
|
+
regcapital: 237.5694,
|
|
1856
|
+
paidcapital: 94.707,
|
|
1857
|
+
insuranceratio: null,
|
|
1858
|
+
isenable: true,
|
|
1859
|
+
status_singleselect: '2',
|
|
1860
|
+
range_multipleselect: ['F3134', 'I3008', 'I3011', 'I3014'],
|
|
1861
|
+
status_radio: '5',
|
|
1862
|
+
range_check: ['I3006', 'I3007', 'I3008', 'I3010', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010'],
|
|
1863
|
+
establishdate: '2023-10-07T23:30:43.000Z',
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
createdAt: '2023-07-11T07:34:49.000Z',
|
|
1867
|
+
updatedAt: '2023-07-10T02:25:11.736Z',
|
|
1868
|
+
createdById: 5,
|
|
1869
|
+
updatedById: null,
|
|
1870
|
+
testdataid: 25,
|
|
1871
|
+
orgcode: '550025',
|
|
1872
|
+
orgname: '赵記发展贸易有限责任公司',
|
|
1873
|
+
address: '607 Sanlitun Road, Chaoyang District',
|
|
1874
|
+
phone: '144-4751-3753',
|
|
1875
|
+
email: null,
|
|
1876
|
+
url: 'https://video.kakeungw.net/VideoGames',
|
|
1877
|
+
staffnum: 64,
|
|
1878
|
+
regcapital: 78.8595,
|
|
1879
|
+
paidcapital: 71.565,
|
|
1880
|
+
insuranceratio: 58.15,
|
|
1881
|
+
isenable: true,
|
|
1882
|
+
status_singleselect: '7',
|
|
1883
|
+
range_multipleselect: ['F3134', 'I3006', 'I3011', 'I3027', 'I3032', 'L2032', 'L2095'],
|
|
1884
|
+
status_radio: '6',
|
|
1885
|
+
range_check: ['I3008', 'I3027', 'I3034', 'L2032', 'O3010', 'P1029'],
|
|
1886
|
+
establishdate: null,
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
createdAt: '2023-04-28T09:13:50.000Z',
|
|
1890
|
+
updatedAt: '2023-05-29T08:08:24.000Z',
|
|
1891
|
+
createdById: 6,
|
|
1892
|
+
updatedById: 5,
|
|
1893
|
+
testdataid: 66,
|
|
1894
|
+
orgcode: '440066',
|
|
1895
|
+
orgname: '吴技术有限责任公司',
|
|
1896
|
+
address: '793 Hongqiao Rd., Xu Hui District',
|
|
1897
|
+
phone: '21-0094-0906',
|
|
1898
|
+
email: 'yyut@icloud.com',
|
|
1899
|
+
url: 'https://video.yeowtszhin.us/Appliances',
|
|
1900
|
+
staffnum: 45,
|
|
1901
|
+
regcapital: null,
|
|
1902
|
+
paidcapital: 76.1281,
|
|
1903
|
+
insuranceratio: 76.17,
|
|
1904
|
+
isenable: true,
|
|
1905
|
+
status_singleselect: '2',
|
|
1906
|
+
range_multipleselect: ['F3134', 'I3008', 'I3011', 'I3014', 'I3027', 'I3034', 'L2032', 'O3010'],
|
|
1907
|
+
status_radio: '4',
|
|
1908
|
+
range_check: ['F3134', 'I3011', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'O3010', 'P1029'],
|
|
1909
|
+
establishdate: '2023-09-08T01:51:09.000Z',
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
createdAt: '2023-03-20T17:13:24.000Z',
|
|
1913
|
+
updatedAt: '2023-05-16T04:16:34.000Z',
|
|
1914
|
+
createdById: 1,
|
|
1915
|
+
updatedById: 6,
|
|
1916
|
+
testdataid: 62,
|
|
1917
|
+
orgcode: '510062',
|
|
1918
|
+
orgname: 'Salazar Food LLC',
|
|
1919
|
+
address: '716 Huaxia St, Jinghua Shangquan',
|
|
1920
|
+
phone: '198-4847-7122',
|
|
1921
|
+
email: 'auwingfat1219@gmail.com',
|
|
1922
|
+
url: 'https://www.xielu.us/CellPhonesAccessories',
|
|
1923
|
+
staffnum: 131,
|
|
1924
|
+
regcapital: 273.1562,
|
|
1925
|
+
paidcapital: 287.3437,
|
|
1926
|
+
insuranceratio: 76.86,
|
|
1927
|
+
isenable: true,
|
|
1928
|
+
status_singleselect: '7',
|
|
1929
|
+
range_multipleselect: [
|
|
1930
|
+
'I3006',
|
|
1931
|
+
'I3007',
|
|
1932
|
+
'I3008',
|
|
1933
|
+
'I3010',
|
|
1934
|
+
'I3011',
|
|
1935
|
+
'I3012',
|
|
1936
|
+
'I3032',
|
|
1937
|
+
'L2032',
|
|
1938
|
+
'L2095',
|
|
1939
|
+
'O3010',
|
|
1940
|
+
'P1029',
|
|
1941
|
+
],
|
|
1942
|
+
status_radio: '5',
|
|
1943
|
+
range_check: [
|
|
1944
|
+
'F3134',
|
|
1945
|
+
'I3006',
|
|
1946
|
+
'I3007',
|
|
1947
|
+
'I3011',
|
|
1948
|
+
'I3014',
|
|
1949
|
+
'I3027',
|
|
1950
|
+
'I3034',
|
|
1951
|
+
'L2032',
|
|
1952
|
+
'L2095',
|
|
1953
|
+
'M2070',
|
|
1954
|
+
'O3010',
|
|
1955
|
+
'P1029',
|
|
1956
|
+
],
|
|
1957
|
+
establishdate: '2021-12-14T18:38:12.000Z',
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
createdAt: '2023-05-10T18:09:11.000Z',
|
|
1961
|
+
updatedAt: '2023-08-13T01:37:53.000Z',
|
|
1962
|
+
createdById: 9,
|
|
1963
|
+
updatedById: 1,
|
|
1964
|
+
testdataid: 20,
|
|
1965
|
+
orgcode: '620020',
|
|
1966
|
+
orgname: '岚有限责任公司',
|
|
1967
|
+
address: '8 Tremont Road',
|
|
1968
|
+
phone: '614-635-9277',
|
|
1969
|
+
email: 'salazar1985@gmail.com',
|
|
1970
|
+
url: 'https://www.gordemily.com/FilmSupplies',
|
|
1971
|
+
staffnum: null,
|
|
1972
|
+
regcapital: 219.7301,
|
|
1973
|
+
paidcapital: 63.6256,
|
|
1974
|
+
insuranceratio: 45.43,
|
|
1975
|
+
isenable: null,
|
|
1976
|
+
status_singleselect: '8',
|
|
1977
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'P1029'],
|
|
1978
|
+
status_radio: '8',
|
|
1979
|
+
range_check: ['F3134', 'I3006', 'I3011', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070'],
|
|
1980
|
+
establishdate: '2022-07-05T10:21:51.000Z',
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
createdAt: '2023-05-05T06:12:02.000Z',
|
|
1984
|
+
updatedAt: '2023-05-04T19:41:58.000Z',
|
|
1985
|
+
createdById: 3,
|
|
1986
|
+
updatedById: 6,
|
|
1987
|
+
testdataid: 31,
|
|
1988
|
+
orgcode: '430031',
|
|
1989
|
+
orgname: 'Hughes LLC',
|
|
1990
|
+
address: '980 4th Section Renmin South Road, Jinjiang District',
|
|
1991
|
+
phone: '147-7853-0142',
|
|
1992
|
+
email: 'scao@mail.com',
|
|
1993
|
+
url: 'http://image.ikedayu1224.com/Baby',
|
|
1994
|
+
staffnum: 135,
|
|
1995
|
+
regcapital: 139.2834,
|
|
1996
|
+
paidcapital: 173.014,
|
|
1997
|
+
insuranceratio: 62.83,
|
|
1998
|
+
isenable: true,
|
|
1999
|
+
status_singleselect: '2',
|
|
2000
|
+
range_multipleselect: ['F3134', 'I3006', 'I3014', 'I3032', 'I3034', 'P1029'],
|
|
2001
|
+
status_radio: '2',
|
|
2002
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3034', 'M2070', 'O3010', 'P1029'],
|
|
2003
|
+
establishdate: '2023-11-10T02:30:06.000Z',
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
createdAt: '2023-05-03T05:56:11.000Z',
|
|
2007
|
+
updatedAt: '2023-07-29T02:33:20.000Z',
|
|
2008
|
+
createdById: 8,
|
|
2009
|
+
updatedById: 4,
|
|
2010
|
+
testdataid: 55,
|
|
2011
|
+
orgcode: '310055',
|
|
2012
|
+
orgname: '睿有限责任公司',
|
|
2013
|
+
address: '75 Huaxia St, Jinghua Shangquan',
|
|
2014
|
+
phone: '760-789-1994',
|
|
2015
|
+
email: 'skudo73@outlook.com',
|
|
2016
|
+
url: 'http://image.kenta1.com/ToolsHomeDecoration',
|
|
2017
|
+
staffnum: 101,
|
|
2018
|
+
regcapital: 168.9348,
|
|
2019
|
+
paidcapital: 242.9576,
|
|
2020
|
+
insuranceratio: 28.11,
|
|
2021
|
+
isenable: true,
|
|
2022
|
+
status_singleselect: '8',
|
|
2023
|
+
range_multipleselect: ['I3006', 'I3008', 'I3014', 'L2095', 'M2070'],
|
|
2024
|
+
status_radio: '8',
|
|
2025
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3034', 'L2095', 'M2070', 'O3010'],
|
|
2026
|
+
establishdate: '2021-12-29T21:52:28.000Z',
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
createdAt: '2023-08-14T14:48:46.000Z',
|
|
2030
|
+
updatedAt: '2023-08-08T22:23:16.000Z',
|
|
2031
|
+
createdById: 5,
|
|
2032
|
+
updatedById: 9,
|
|
2033
|
+
testdataid: 84,
|
|
2034
|
+
orgcode: '530084',
|
|
2035
|
+
orgname: '璐有限责任公司',
|
|
2036
|
+
address: '32 Jiangnan West Road, Haizhu District',
|
|
2037
|
+
phone: '20-611-5899',
|
|
2038
|
+
email: 'kffan@gmail.com',
|
|
2039
|
+
url: 'http://auth.nakayama40.jp/Others',
|
|
2040
|
+
staffnum: 27,
|
|
2041
|
+
regcapital: 211.2634,
|
|
2042
|
+
paidcapital: 251.2448,
|
|
2043
|
+
insuranceratio: 8.95,
|
|
2044
|
+
isenable: true,
|
|
2045
|
+
status_singleselect: '3',
|
|
2046
|
+
range_multipleselect: ['F3134', 'I3006', 'I3008', 'I3027', 'I3032', 'P1029'],
|
|
2047
|
+
status_radio: '5',
|
|
2048
|
+
range_check: ['I3006', 'I3008', 'I3012', 'L2095', 'M2070'],
|
|
2049
|
+
establishdate: '2022-12-20T04:42:54.000Z',
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
createdAt: '2023-06-30T09:53:02.000Z',
|
|
2053
|
+
updatedAt: '2023-07-18T22:24:59.000Z',
|
|
2054
|
+
createdById: 3,
|
|
2055
|
+
updatedById: 4,
|
|
2056
|
+
testdataid: 56,
|
|
2057
|
+
orgcode: '210056',
|
|
2058
|
+
orgname: 'Lopez Brothers Technology LLC',
|
|
2059
|
+
address: '延庆区028县道953号',
|
|
2060
|
+
phone: '10-641-1187',
|
|
2061
|
+
email: 'naks@hotmail.com',
|
|
2062
|
+
url: 'https://image.guzh.info/CenturionGardenOutdoor',
|
|
2063
|
+
staffnum: 185,
|
|
2064
|
+
regcapital: 63.5178,
|
|
2065
|
+
paidcapital: 153.6774,
|
|
2066
|
+
insuranceratio: 91.75,
|
|
2067
|
+
isenable: true,
|
|
2068
|
+
status_singleselect: '3',
|
|
2069
|
+
range_multipleselect: ['I3008', 'I3010', 'I3012', 'I3014', 'I3034', 'M2070', 'P1029'],
|
|
2070
|
+
status_radio: '4',
|
|
2071
|
+
range_check: ['I3008', 'I3011', 'L2032', 'M2070', 'P1029'],
|
|
2072
|
+
establishdate: '2021-05-21T11:02:59.000Z',
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
createdAt: '2023-06-24T08:12:11.000Z',
|
|
2076
|
+
updatedAt: '2023-07-10T02:25:11.743Z',
|
|
2077
|
+
createdById: 8,
|
|
2078
|
+
updatedById: null,
|
|
2079
|
+
testdataid: 89,
|
|
2080
|
+
orgcode: '640089',
|
|
2081
|
+
orgname: 'Curtis Pharmaceutical Inc.',
|
|
2082
|
+
address: null,
|
|
2083
|
+
phone: '179-9231-4455',
|
|
2084
|
+
email: 'aoi110@icloud.com',
|
|
2085
|
+
url: 'https://www.yuziyi.co.jp/ToolsHomeDecoration',
|
|
2086
|
+
staffnum: 119,
|
|
2087
|
+
regcapital: 196.5298,
|
|
2088
|
+
paidcapital: 195.5359,
|
|
2089
|
+
insuranceratio: null,
|
|
2090
|
+
isenable: null,
|
|
2091
|
+
status_singleselect: '4',
|
|
2092
|
+
range_multipleselect: ['F3134', 'I3012', 'I3014', 'I3027', 'L2095', 'O3010', 'P1029'],
|
|
2093
|
+
status_radio: '4',
|
|
2094
|
+
range_check: ['I3006', 'I3008', 'I3010', 'I3011', 'I3014', 'I3027', 'L2032', 'M2070'],
|
|
2095
|
+
establishdate: '2023-10-08T21:08:37.000Z',
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
createdAt: '2023-08-20T12:48:08.000Z',
|
|
2099
|
+
updatedAt: '2023-06-13T11:27:58.000Z',
|
|
2100
|
+
createdById: 7,
|
|
2101
|
+
updatedById: 5,
|
|
2102
|
+
testdataid: 44,
|
|
2103
|
+
orgcode: '410044',
|
|
2104
|
+
orgname: 'Lee Brothers Inc.',
|
|
2105
|
+
address: '成华区双庆路300号',
|
|
2106
|
+
phone: null,
|
|
2107
|
+
email: 'tajiehong602@outlook.com',
|
|
2108
|
+
url: 'http://image.tonkay9.info/Baby',
|
|
2109
|
+
staffnum: 176,
|
|
2110
|
+
regcapital: 297.447,
|
|
2111
|
+
paidcapital: 16.0008,
|
|
2112
|
+
insuranceratio: 69.5,
|
|
2113
|
+
isenable: true,
|
|
2114
|
+
status_singleselect: '4',
|
|
2115
|
+
range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3014', 'I3034', 'M2070'],
|
|
2116
|
+
status_radio: '3',
|
|
2117
|
+
range_check: ['F3134', 'I3006', 'I3010', 'I3027', 'I3034', 'L2032', 'O3010'],
|
|
2118
|
+
establishdate: '2023-01-04T12:48:43.000Z',
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
createdAt: '2023-03-10T11:17:24.000Z',
|
|
2122
|
+
updatedAt: '2023-07-25T07:52:00.000Z',
|
|
2123
|
+
createdById: 3,
|
|
2124
|
+
updatedById: 4,
|
|
2125
|
+
testdataid: 35,
|
|
2126
|
+
orgcode: '150035',
|
|
2127
|
+
orgname: '邵記系统有限责任公司',
|
|
2128
|
+
address: '209 1st Ave',
|
|
2129
|
+
phone: '718-246-6197',
|
|
2130
|
+
email: 'akat@hotmail.com',
|
|
2131
|
+
url: 'http://video.fuchungyin1009.co.jp/ArtsHandicraftsSewing',
|
|
2132
|
+
staffnum: 185,
|
|
2133
|
+
regcapital: 262.7247,
|
|
2134
|
+
paidcapital: 299.6833,
|
|
2135
|
+
insuranceratio: 45.48,
|
|
2136
|
+
isenable: null,
|
|
2137
|
+
status_singleselect: '1',
|
|
2138
|
+
range_multipleselect: ['F3134', 'I3007', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'M2070', 'O3010'],
|
|
2139
|
+
status_radio: '2',
|
|
2140
|
+
range_check: ['I3006', 'I3007', 'I3010', 'I3032', 'I3034', 'M2070', 'P1029'],
|
|
2141
|
+
establishdate: '2022-06-04T09:44:46.000Z',
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
createdAt: '2023-05-22T02:10:55.000Z',
|
|
2145
|
+
updatedAt: '2023-07-19T22:44:41.000Z',
|
|
2146
|
+
createdById: 9,
|
|
2147
|
+
updatedById: 3,
|
|
2148
|
+
testdataid: 4,
|
|
2149
|
+
orgcode: '430004',
|
|
2150
|
+
orgname: '宇宁制药有限责任公司',
|
|
2151
|
+
address: '328 Jingtian East 1st St, Futian District',
|
|
2152
|
+
phone: '755-3659-2323',
|
|
2153
|
+
email: 'cmsi92@icloud.com',
|
|
2154
|
+
url: 'http://www.czhennan4.biz/ToolsHomeDecoration',
|
|
2155
|
+
staffnum: 132,
|
|
2156
|
+
regcapital: 175.7828,
|
|
2157
|
+
paidcapital: 290.7203,
|
|
2158
|
+
insuranceratio: 45.74,
|
|
2159
|
+
isenable: true,
|
|
2160
|
+
status_singleselect: '8',
|
|
2161
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'M2070'],
|
|
2162
|
+
status_radio: '7',
|
|
2163
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3012', 'I3014', 'I3032', 'L2095', 'P1029'],
|
|
2164
|
+
establishdate: '2021-01-08T16:46:38.000Z',
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
createdAt: '2023-03-08T16:04:01.000Z',
|
|
2168
|
+
updatedAt: '2023-05-05T22:57:27.000Z',
|
|
2169
|
+
createdById: 4,
|
|
2170
|
+
updatedById: 3,
|
|
2171
|
+
testdataid: 81,
|
|
2172
|
+
orgcode: '110081',
|
|
2173
|
+
orgname: '子异有限责任公司',
|
|
2174
|
+
address: '229 Rush Street',
|
|
2175
|
+
phone: '312-600-3390',
|
|
2176
|
+
email: 'lokwy@icloud.com',
|
|
2177
|
+
url: 'https://image.anakagawa.us/MusicalInstrument',
|
|
2178
|
+
staffnum: 26,
|
|
2179
|
+
regcapital: null,
|
|
2180
|
+
paidcapital: 186.0802,
|
|
2181
|
+
insuranceratio: 18.24,
|
|
2182
|
+
isenable: true,
|
|
2183
|
+
status_singleselect: '2',
|
|
2184
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3032', 'L2032', 'L2095', 'M2070', 'O3010'],
|
|
2185
|
+
status_radio: '5',
|
|
2186
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3012', 'I3027', 'L2032', 'O3010'],
|
|
2187
|
+
establishdate: '2021-04-08T05:24:21.000Z',
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
createdAt: '2023-06-15T13:47:48.000Z',
|
|
2191
|
+
updatedAt: '2023-05-20T12:37:39.000Z',
|
|
2192
|
+
createdById: 0,
|
|
2193
|
+
updatedById: 4,
|
|
2194
|
+
testdataid: 34,
|
|
2195
|
+
orgcode: '210034',
|
|
2196
|
+
orgname: '董記电子有限责任公司',
|
|
2197
|
+
address: '265 Huaxia St, Jinghua Shangquan',
|
|
2198
|
+
phone: null,
|
|
2199
|
+
email: 'rivashle1114@gmail.com',
|
|
2200
|
+
url: 'http://auth.takeda1.cn/Handcrafts',
|
|
2201
|
+
staffnum: 176,
|
|
2202
|
+
regcapital: 281.1833,
|
|
2203
|
+
paidcapital: 67.1949,
|
|
2204
|
+
insuranceratio: 29.93,
|
|
2205
|
+
isenable: true,
|
|
2206
|
+
status_singleselect: '4',
|
|
2207
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3012', 'I3027', 'I3034', 'L2032', 'M2070', 'O3010', 'P1029'],
|
|
2208
|
+
status_radio: '2',
|
|
2209
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3011', 'I3012', 'I3014', 'L2095', 'O3010'],
|
|
2210
|
+
establishdate: '2023-02-08T16:44:29.000Z',
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
createdAt: '2023-08-04T08:58:50.000Z',
|
|
2214
|
+
updatedAt: '2023-08-04T04:34:11.000Z',
|
|
2215
|
+
createdById: 9,
|
|
2216
|
+
updatedById: 8,
|
|
2217
|
+
testdataid: 87,
|
|
2218
|
+
orgcode: '420087',
|
|
2219
|
+
orgname: '史記物业代理有限责任公司',
|
|
2220
|
+
address: '549 Ridgewood Road',
|
|
2221
|
+
phone: '330-982-5220',
|
|
2222
|
+
email: 'maruyamashi@hotmail.com',
|
|
2223
|
+
url: 'https://image.kondohik1.co.jp/ToysGames',
|
|
2224
|
+
staffnum: 126,
|
|
2225
|
+
regcapital: 227.7387,
|
|
2226
|
+
paidcapital: 139.9423,
|
|
2227
|
+
insuranceratio: 80.19,
|
|
2228
|
+
isenable: true,
|
|
2229
|
+
status_singleselect: '5',
|
|
2230
|
+
range_multipleselect: ['I3008', 'I3010', 'I3011', 'I3027', 'I3034', 'P1029'],
|
|
2231
|
+
status_radio: '3',
|
|
2232
|
+
range_check: ['I3006', 'I3010', 'I3014', 'I3032', 'I3034', 'M2070', 'O3010'],
|
|
2233
|
+
establishdate: '2023-04-08T00:21:42.000Z',
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
createdAt: '2023-06-17T22:39:01.000Z',
|
|
2237
|
+
updatedAt: '2023-05-12T07:34:03.000Z',
|
|
2238
|
+
createdById: 0,
|
|
2239
|
+
updatedById: 7,
|
|
2240
|
+
testdataid: 65,
|
|
2241
|
+
orgcode: '250065',
|
|
2242
|
+
orgname: '林有限责任公司',
|
|
2243
|
+
address: '595 3rd Section Hongxing Road, Jinjiang District',
|
|
2244
|
+
phone: '147-2716-7825',
|
|
2245
|
+
email: 'kathy09@gmail.com',
|
|
2246
|
+
url: 'http://auth.shenj.net/AppsGames',
|
|
2247
|
+
staffnum: 146,
|
|
2248
|
+
regcapital: 63.0539,
|
|
2249
|
+
paidcapital: 18.8649,
|
|
2250
|
+
insuranceratio: 0.22,
|
|
2251
|
+
isenable: true,
|
|
2252
|
+
status_singleselect: '2',
|
|
2253
|
+
range_multipleselect: ['I3008', 'I3011', 'I3012', 'I3027', 'L2032', 'L2095', 'M2070', 'P1029'],
|
|
2254
|
+
status_radio: '1',
|
|
2255
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3011', 'I3027', 'I3032', 'L2032', 'L2095'],
|
|
2256
|
+
establishdate: '2023-08-06T08:03:27.000Z',
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
createdAt: '2023-04-26T07:55:22.000Z',
|
|
2260
|
+
updatedAt: '2023-06-15T15:44:16.000Z',
|
|
2261
|
+
createdById: 8,
|
|
2262
|
+
updatedById: 4,
|
|
2263
|
+
testdataid: 74,
|
|
2264
|
+
orgcode: '240074',
|
|
2265
|
+
orgname: "Schmidt's Food Inc.",
|
|
2266
|
+
address: '罗湖区蔡屋围深南东路630号',
|
|
2267
|
+
phone: '755-938-8862',
|
|
2268
|
+
email: 'jialun9@outlook.com',
|
|
2269
|
+
url: 'https://www.kwokwing614.org/ToysGames',
|
|
2270
|
+
staffnum: 34,
|
|
2271
|
+
regcapital: 291.2407,
|
|
2272
|
+
paidcapital: 235.8852,
|
|
2273
|
+
insuranceratio: 5.3,
|
|
2274
|
+
isenable: true,
|
|
2275
|
+
status_singleselect: '5',
|
|
2276
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3012', 'L2032', 'L2095', 'M2070'],
|
|
2277
|
+
status_radio: '5',
|
|
2278
|
+
range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3014', 'I3032', 'M2070', 'O3010', 'P1029'],
|
|
2279
|
+
establishdate: '2021-06-15T18:47:52.000Z',
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
createdAt: '2023-06-13T04:08:45.000Z',
|
|
2283
|
+
updatedAt: '2023-05-19T22:14:25.000Z',
|
|
2284
|
+
createdById: 9,
|
|
2285
|
+
updatedById: 4,
|
|
2286
|
+
testdataid: 19,
|
|
2287
|
+
orgcode: '650019',
|
|
2288
|
+
orgname: 'Myers Brothers Telecommunication Inc.',
|
|
2289
|
+
address: '294 Dong Zhi Men, Dongcheng District',
|
|
2290
|
+
phone: '155-7317-7341',
|
|
2291
|
+
email: 'daisukeotsu@mail.com',
|
|
2292
|
+
url: 'https://drive.floresla8.org/BeautyPersonalCare',
|
|
2293
|
+
staffnum: 128,
|
|
2294
|
+
regcapital: 197.9632,
|
|
2295
|
+
paidcapital: 90.5853,
|
|
2296
|
+
insuranceratio: 64.9,
|
|
2297
|
+
isenable: true,
|
|
2298
|
+
status_singleselect: '5',
|
|
2299
|
+
range_multipleselect: ['I3007', 'I3008', 'I3014', 'L2095', 'P1029'],
|
|
2300
|
+
status_radio: '2',
|
|
2301
|
+
range_check: ['I3006', 'I3008', 'I3010', 'I3032', 'L2095', 'M2070'],
|
|
2302
|
+
establishdate: '2023-04-30T14:56:20.000Z',
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
createdAt: '2023-03-22T19:09:18.000Z',
|
|
2306
|
+
updatedAt: '2023-08-25T18:37:39.000Z',
|
|
2307
|
+
createdById: 7,
|
|
2308
|
+
updatedById: 5,
|
|
2309
|
+
testdataid: 21,
|
|
2310
|
+
orgcode: '620021',
|
|
2311
|
+
orgname: 'Williams Consultants Inc.',
|
|
2312
|
+
address: '786 Tremont Road',
|
|
2313
|
+
phone: '614-644-3993',
|
|
2314
|
+
email: 'aota96@yahoo.com',
|
|
2315
|
+
url: 'https://image.hilldo.biz/BeautyPersonalCare',
|
|
2316
|
+
staffnum: 195,
|
|
2317
|
+
regcapital: 94.6208,
|
|
2318
|
+
paidcapital: 113.2067,
|
|
2319
|
+
insuranceratio: 0.42,
|
|
2320
|
+
isenable: true,
|
|
2321
|
+
status_singleselect: '7',
|
|
2322
|
+
range_multipleselect: ['F3134', 'I3006', 'I3010', 'I3011', 'I3027', 'I3032', 'I3034'],
|
|
2323
|
+
status_radio: '6',
|
|
2324
|
+
range_check: ['F3134', 'I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'M2070'],
|
|
2325
|
+
establishdate: '2021-06-14T09:07:34.000Z',
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
createdAt: '2023-08-28T21:13:03.000Z',
|
|
2329
|
+
updatedAt: '2023-07-17T22:47:34.000Z',
|
|
2330
|
+
createdById: 8,
|
|
2331
|
+
updatedById: 6,
|
|
2332
|
+
testdataid: 43,
|
|
2333
|
+
orgcode: '220043',
|
|
2334
|
+
orgname: 'Mendez Logistic LLC',
|
|
2335
|
+
address: '浦东新区健祥路790号',
|
|
2336
|
+
phone: '172-1090-3775',
|
|
2337
|
+
email: 'suzukidaisuke@mail.com',
|
|
2338
|
+
url: 'https://www.zhengr.info/Books',
|
|
2339
|
+
staffnum: 173,
|
|
2340
|
+
regcapital: 173.8671,
|
|
2341
|
+
paidcapital: null,
|
|
2342
|
+
insuranceratio: 72.41,
|
|
2343
|
+
isenable: true,
|
|
2344
|
+
status_singleselect: '3',
|
|
2345
|
+
range_multipleselect: ['I3011', 'I3032', 'I3034', 'L2032', 'L2095', 'P1029'],
|
|
2346
|
+
status_radio: '8',
|
|
2347
|
+
range_check: [
|
|
2348
|
+
'F3134',
|
|
2349
|
+
'I3006',
|
|
2350
|
+
'I3007',
|
|
2351
|
+
'I3008',
|
|
2352
|
+
'I3010',
|
|
2353
|
+
'I3011',
|
|
2354
|
+
'I3012',
|
|
2355
|
+
'I3014',
|
|
2356
|
+
'I3032',
|
|
2357
|
+
'L2095',
|
|
2358
|
+
'M2070',
|
|
2359
|
+
'P1029',
|
|
2360
|
+
],
|
|
2361
|
+
establishdate: '2021-12-27T04:23:26.000Z',
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
createdAt: '2023-08-25T08:01:03.000Z',
|
|
2365
|
+
updatedAt: '2023-07-10T02:25:11.739Z',
|
|
2366
|
+
createdById: 4,
|
|
2367
|
+
updatedById: null,
|
|
2368
|
+
testdataid: 33,
|
|
2369
|
+
orgcode: '230033',
|
|
2370
|
+
orgname: '詩涵电脑有限责任公司',
|
|
2371
|
+
address: '825 2nd Zhongshan Road, Yuexiu District',
|
|
2372
|
+
phone: '166-7145-2872',
|
|
2373
|
+
email: null,
|
|
2374
|
+
url: 'http://video.scy.info/BeautyPersonalCare',
|
|
2375
|
+
staffnum: 184,
|
|
2376
|
+
regcapital: 237.116,
|
|
2377
|
+
paidcapital: 7.2748,
|
|
2378
|
+
insuranceratio: 66.74,
|
|
2379
|
+
isenable: null,
|
|
2380
|
+
status_singleselect: '1',
|
|
2381
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3011', 'I3012', 'I3027', 'I3032', 'L2032', 'O3010'],
|
|
2382
|
+
status_radio: '5',
|
|
2383
|
+
range_check: null,
|
|
2384
|
+
establishdate: '2021-10-10T20:57:37.000Z',
|
|
2385
|
+
},
|
|
2386
|
+
{
|
|
2387
|
+
createdAt: '2023-07-09T05:39:52.000Z',
|
|
2388
|
+
updatedAt: '2023-06-26T04:30:41.000Z',
|
|
2389
|
+
createdById: 6,
|
|
2390
|
+
updatedById: 3,
|
|
2391
|
+
testdataid: 10,
|
|
2392
|
+
orgcode: '230010',
|
|
2393
|
+
orgname: 'Medina Brothers Software LLC',
|
|
2394
|
+
address: '472 West Market Street',
|
|
2395
|
+
phone: '330-026-0212',
|
|
2396
|
+
email: 'murphygrace@yahoo.com',
|
|
2397
|
+
url: 'https://www.ngws.com/Books',
|
|
2398
|
+
staffnum: 17,
|
|
2399
|
+
regcapital: 74.6449,
|
|
2400
|
+
paidcapital: 281.953,
|
|
2401
|
+
insuranceratio: 26.67,
|
|
2402
|
+
isenable: true,
|
|
2403
|
+
status_singleselect: '2',
|
|
2404
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3008', 'I3011', 'I3014', 'I3034', 'L2032', 'M2070', 'P1029'],
|
|
2405
|
+
status_radio: '8',
|
|
2406
|
+
range_check: ['F3134', 'I3007', 'I3008', 'I3011', 'I3012', 'I3014', 'I3027', 'L2095', 'P1029'],
|
|
2407
|
+
establishdate: '2023-01-25T11:54:37.000Z',
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
createdAt: '2023-08-15T23:23:20.000Z',
|
|
2411
|
+
updatedAt: '2023-05-09T00:00:10.000Z',
|
|
2412
|
+
createdById: 1,
|
|
2413
|
+
updatedById: 3,
|
|
2414
|
+
testdataid: 36,
|
|
2415
|
+
orgcode: '440036',
|
|
2416
|
+
orgname: '李記电子有限责任公司',
|
|
2417
|
+
address: '750 Lark Street',
|
|
2418
|
+
phone: '838-441-5793',
|
|
2419
|
+
email: 'ryonishimura530@gmail.com',
|
|
2420
|
+
url: 'https://image.cwk.biz/Baby',
|
|
2421
|
+
staffnum: 88,
|
|
2422
|
+
regcapital: 292.6699,
|
|
2423
|
+
paidcapital: 223.948,
|
|
2424
|
+
insuranceratio: 36.35,
|
|
2425
|
+
isenable: true,
|
|
2426
|
+
status_singleselect: '5',
|
|
2427
|
+
range_multipleselect: ['I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3032', 'I3034', 'L2032', 'L2095', 'P1029'],
|
|
2428
|
+
status_radio: '4',
|
|
2429
|
+
range_check: ['I3007', 'I3008', 'I3012', 'I3014', 'L2032', 'O3010'],
|
|
2430
|
+
establishdate: null,
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
createdAt: '2023-03-24T11:13:11.000Z',
|
|
2434
|
+
updatedAt: '2023-06-02T14:17:58.000Z',
|
|
2435
|
+
createdById: 10,
|
|
2436
|
+
updatedById: 4,
|
|
2437
|
+
testdataid: 51,
|
|
2438
|
+
orgcode: '550051',
|
|
2439
|
+
orgname: '胡有限责任公司',
|
|
2440
|
+
address: '西城区复兴门内大街438号',
|
|
2441
|
+
phone: '137-8041-7460',
|
|
2442
|
+
email: 'saumankwo@mail.com',
|
|
2443
|
+
url: 'https://auth.csoto.net/Others',
|
|
2444
|
+
staffnum: null,
|
|
2445
|
+
regcapital: 51.757,
|
|
2446
|
+
paidcapital: 67.2645,
|
|
2447
|
+
insuranceratio: 29.38,
|
|
2448
|
+
isenable: true,
|
|
2449
|
+
status_singleselect: '4',
|
|
2450
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034'],
|
|
2451
|
+
status_radio: '7',
|
|
2452
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3011', 'I3014', 'I3032', 'L2032', 'O3010', 'P1029'],
|
|
2453
|
+
establishdate: '2021-01-02T11:44:41.000Z',
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
createdAt: '2023-04-02T04:03:53.000Z',
|
|
2457
|
+
updatedAt: '2023-06-14T12:56:19.000Z',
|
|
2458
|
+
createdById: 6,
|
|
2459
|
+
updatedById: 1,
|
|
2460
|
+
testdataid: 59,
|
|
2461
|
+
orgcode: '210059',
|
|
2462
|
+
orgname: '陶記制药有限责任公司',
|
|
2463
|
+
address: null,
|
|
2464
|
+
phone: '179-0776-0684',
|
|
2465
|
+
email: 'yuto426@gmail.com',
|
|
2466
|
+
url: 'http://drive.pati.co.jp/ArtsHandicraftsSewing',
|
|
2467
|
+
staffnum: 154,
|
|
2468
|
+
regcapital: null,
|
|
2469
|
+
paidcapital: 78.4742,
|
|
2470
|
+
insuranceratio: 51.93,
|
|
2471
|
+
isenable: true,
|
|
2472
|
+
status_singleselect: '1',
|
|
2473
|
+
range_multipleselect: ['F3134', 'I3010', 'I3011', 'I3012', 'I3014', 'M2070', 'O3010', 'P1029'],
|
|
2474
|
+
status_radio: '7',
|
|
2475
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3010', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070'],
|
|
2476
|
+
establishdate: '2023-01-31T01:55:31.000Z',
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
createdAt: '2023-03-02T08:06:09.000Z',
|
|
2480
|
+
updatedAt: '2023-07-10T02:25:11.741Z',
|
|
2481
|
+
createdById: 7,
|
|
2482
|
+
updatedById: null,
|
|
2483
|
+
testdataid: 73,
|
|
2484
|
+
orgcode: '410073',
|
|
2485
|
+
orgname: '晓明有限责任公司',
|
|
2486
|
+
address: '696 North Michigan Ave',
|
|
2487
|
+
phone: '312-545-7935',
|
|
2488
|
+
email: 'jocox1229@outlook.com',
|
|
2489
|
+
url: null,
|
|
2490
|
+
staffnum: 181,
|
|
2491
|
+
regcapital: 208.5642,
|
|
2492
|
+
paidcapital: 124.9526,
|
|
2493
|
+
insuranceratio: 88.64,
|
|
2494
|
+
isenable: true,
|
|
2495
|
+
status_singleselect: '6',
|
|
2496
|
+
range_multipleselect: ['F3134', 'I3006', 'I3008', 'I3010', 'I3014', 'I3034', 'L2095', 'P1029'],
|
|
2497
|
+
status_radio: '2',
|
|
2498
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3011', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070', 'O3010'],
|
|
2499
|
+
establishdate: null,
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
createdAt: '2023-03-25T22:18:26.000Z',
|
|
2503
|
+
updatedAt: '2023-06-27T06:57:51.000Z',
|
|
2504
|
+
createdById: 5,
|
|
2505
|
+
updatedById: 3,
|
|
2506
|
+
testdataid: 5,
|
|
2507
|
+
orgcode: '630005',
|
|
2508
|
+
orgname: "Grant's Network Systems LLC",
|
|
2509
|
+
address: '成华区双庆路397号',
|
|
2510
|
+
phone: '149-8059-2712',
|
|
2511
|
+
email: 'turneal@gmail.com',
|
|
2512
|
+
url: 'http://auth.fujr.jp/Food',
|
|
2513
|
+
staffnum: 193,
|
|
2514
|
+
regcapital: 116.4198,
|
|
2515
|
+
paidcapital: 267.387,
|
|
2516
|
+
insuranceratio: 62.02,
|
|
2517
|
+
isenable: true,
|
|
2518
|
+
status_singleselect: '3',
|
|
2519
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3008', 'I3010', 'I3012', 'I3014', 'I3032', 'I3034', 'L2032'],
|
|
2520
|
+
status_radio: '6',
|
|
2521
|
+
range_check: ['I3006', 'I3027', 'L2095', 'P1029'],
|
|
2522
|
+
establishdate: '2023-09-09T15:50:04.000Z',
|
|
2523
|
+
},
|
|
2524
|
+
{
|
|
2525
|
+
createdAt: '2023-07-13T05:22:20.000Z',
|
|
2526
|
+
updatedAt: '2023-08-11T12:32:14.000Z',
|
|
2527
|
+
createdById: 3,
|
|
2528
|
+
updatedById: 6,
|
|
2529
|
+
testdataid: 29,
|
|
2530
|
+
orgcode: '440029',
|
|
2531
|
+
orgname: 'Thomas Brothers Pharmaceutical Inc.',
|
|
2532
|
+
address: '472 West Market Street',
|
|
2533
|
+
phone: '330-960-6930',
|
|
2534
|
+
email: 'shirleypay@yahoo.com',
|
|
2535
|
+
url: 'http://auth.jiang1103.jp/CollectiblesFineArt',
|
|
2536
|
+
staffnum: 68,
|
|
2537
|
+
regcapital: 4.9611,
|
|
2538
|
+
paidcapital: 142.3588,
|
|
2539
|
+
insuranceratio: 40.34,
|
|
2540
|
+
isenable: true,
|
|
2541
|
+
status_singleselect: '7',
|
|
2542
|
+
range_multipleselect: ['F3134', 'I3008', 'I3010', 'I3034', 'L2032', 'M2070', 'O3010'],
|
|
2543
|
+
status_radio: '3',
|
|
2544
|
+
range_check: ['F3134', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'O3010', 'P1029'],
|
|
2545
|
+
establishdate: '2021-09-05T07:53:50.000Z',
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
createdAt: '2023-08-04T12:20:48.000Z',
|
|
2549
|
+
updatedAt: '2023-05-02T21:09:34.000Z',
|
|
2550
|
+
createdById: 3,
|
|
2551
|
+
updatedById: 4,
|
|
2552
|
+
testdataid: 95,
|
|
2553
|
+
orgcode: '350095',
|
|
2554
|
+
orgname: '陈記有限责任公司',
|
|
2555
|
+
address: '268 Bergen St',
|
|
2556
|
+
phone: '718-862-1720',
|
|
2557
|
+
email: 'yara1953@gmail.com',
|
|
2558
|
+
url: 'https://auth.riverae.jp/PetSupplies',
|
|
2559
|
+
staffnum: 66,
|
|
2560
|
+
regcapital: 282.8759,
|
|
2561
|
+
paidcapital: 67.7269,
|
|
2562
|
+
insuranceratio: 46.59,
|
|
2563
|
+
isenable: null,
|
|
2564
|
+
status_singleselect: '6',
|
|
2565
|
+
range_multipleselect: ['I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'L2032', 'M2070'],
|
|
2566
|
+
status_radio: '3',
|
|
2567
|
+
range_check: ['I3006', 'I3010', 'I3011', 'I3014', 'I3027', 'I3034', 'P1029'],
|
|
2568
|
+
establishdate: '2021-11-25T14:56:54.000Z',
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
createdAt: '2023-05-01T17:43:16.000Z',
|
|
2572
|
+
updatedAt: '2023-08-20T08:30:36.000Z',
|
|
2573
|
+
createdById: 1,
|
|
2574
|
+
updatedById: 4,
|
|
2575
|
+
testdataid: 8,
|
|
2576
|
+
orgcode: '540008',
|
|
2577
|
+
orgname: 'Christine Communications Inc.',
|
|
2578
|
+
address: '630 Canal Street',
|
|
2579
|
+
phone: '212-162-6691',
|
|
2580
|
+
email: 'hazelcraw@yahoo.com',
|
|
2581
|
+
url: 'http://auth.jialunhu.xyz/Others',
|
|
2582
|
+
staffnum: 47,
|
|
2583
|
+
regcapital: 140.3844,
|
|
2584
|
+
paidcapital: 236.435,
|
|
2585
|
+
insuranceratio: 51.21,
|
|
2586
|
+
isenable: true,
|
|
2587
|
+
status_singleselect: '7',
|
|
2588
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3014', 'I3032', 'L2095', 'O3010'],
|
|
2589
|
+
status_radio: '7',
|
|
2590
|
+
range_check: ['I3008', 'I3010', 'I3032', 'L2032', 'M2070', 'O3010'],
|
|
2591
|
+
establishdate: '2021-11-09T15:13:33.000Z',
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
createdAt: '2023-06-20T03:38:25.000Z',
|
|
2595
|
+
updatedAt: '2023-06-28T02:29:27.000Z',
|
|
2596
|
+
createdById: 10,
|
|
2597
|
+
updatedById: 5,
|
|
2598
|
+
testdataid: 57,
|
|
2599
|
+
orgcode: '130057',
|
|
2600
|
+
orgname: 'Bobby Inc.',
|
|
2601
|
+
address: '631 Huaxia St, Jinghua Shangquan',
|
|
2602
|
+
phone: '167-3235-8699',
|
|
2603
|
+
email: 'zhend@gmail.com',
|
|
2604
|
+
url: 'http://drive.yunxi2015.biz/ClothingShoesandJewelry',
|
|
2605
|
+
staffnum: 161,
|
|
2606
|
+
regcapital: 20.9988,
|
|
2607
|
+
paidcapital: 188.2148,
|
|
2608
|
+
insuranceratio: 74.21,
|
|
2609
|
+
isenable: true,
|
|
2610
|
+
status_singleselect: '8',
|
|
2611
|
+
range_multipleselect: ['F3134', 'I3006', 'I3010', 'I3011', 'I3012', 'I3014', 'I3034', 'L2032', 'O3010', 'P1029'],
|
|
2612
|
+
status_radio: '3',
|
|
2613
|
+
range_check: null,
|
|
2614
|
+
establishdate: '2023-04-27T11:30:53.000Z',
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
createdAt: '2023-04-21T22:18:05.000Z',
|
|
2618
|
+
updatedAt: '2023-05-02T02:52:18.000Z',
|
|
2619
|
+
createdById: 4,
|
|
2620
|
+
updatedById: 8,
|
|
2621
|
+
testdataid: 60,
|
|
2622
|
+
orgcode: '440060',
|
|
2623
|
+
orgname: 'Wilson Engineering LLC',
|
|
2624
|
+
address: '894 Jianxiang Rd, Pudong',
|
|
2625
|
+
phone: '147-8272-9832',
|
|
2626
|
+
email: 'hmwong@icloud.com',
|
|
2627
|
+
url: 'https://drive.ayano303.jp/Beauty',
|
|
2628
|
+
staffnum: null,
|
|
2629
|
+
regcapital: 129.6063,
|
|
2630
|
+
paidcapital: 211.5024,
|
|
2631
|
+
insuranceratio: 50.02,
|
|
2632
|
+
isenable: true,
|
|
2633
|
+
status_singleselect: '4',
|
|
2634
|
+
range_multipleselect: ['I3010', 'I3012', 'I3027', 'I3034', 'L2032', 'M2070'],
|
|
2635
|
+
status_radio: '2',
|
|
2636
|
+
range_check: ['I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3034', 'L2032', 'L2095', 'M2070', 'P1029'],
|
|
2637
|
+
establishdate: '2023-02-02T04:12:05.000Z',
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
createdAt: '2023-03-07T17:22:42.000Z',
|
|
2641
|
+
updatedAt: '2023-05-17T00:30:59.000Z',
|
|
2642
|
+
createdById: 9,
|
|
2643
|
+
updatedById: 7,
|
|
2644
|
+
testdataid: 28,
|
|
2645
|
+
orgcode: '140028',
|
|
2646
|
+
orgname: '嘉伦有限责任公司',
|
|
2647
|
+
address: '189 West Market Street',
|
|
2648
|
+
phone: '330-159-6349',
|
|
2649
|
+
email: 'hotheod@gmail.com',
|
|
2650
|
+
url: 'https://drive.warren98.biz/CellPhonesAccessories',
|
|
2651
|
+
staffnum: 95,
|
|
2652
|
+
regcapital: 35.1485,
|
|
2653
|
+
paidcapital: 60.3831,
|
|
2654
|
+
insuranceratio: 21.62,
|
|
2655
|
+
isenable: null,
|
|
2656
|
+
status_singleselect: '6',
|
|
2657
|
+
range_multipleselect: [
|
|
2658
|
+
'F3134',
|
|
2659
|
+
'I3006',
|
|
2660
|
+
'I3008',
|
|
2661
|
+
'I3010',
|
|
2662
|
+
'I3011',
|
|
2663
|
+
'I3012',
|
|
2664
|
+
'I3032',
|
|
2665
|
+
'L2032',
|
|
2666
|
+
'L2095',
|
|
2667
|
+
'M2070',
|
|
2668
|
+
'O3010',
|
|
2669
|
+
'P1029',
|
|
2670
|
+
],
|
|
2671
|
+
status_radio: '5',
|
|
2672
|
+
range_check: ['F3134', 'I3008', 'I3010', 'I3011', 'I3034', 'P1029'],
|
|
2673
|
+
establishdate: '2022-01-13T23:52:05.000Z',
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
createdAt: '2023-04-26T13:15:06.000Z',
|
|
2677
|
+
updatedAt: '2023-07-13T07:01:14.000Z',
|
|
2678
|
+
createdById: 1,
|
|
2679
|
+
updatedById: 1,
|
|
2680
|
+
testdataid: 49,
|
|
2681
|
+
orgcode: '150049',
|
|
2682
|
+
orgname: 'Owens Brothers Software LLC',
|
|
2683
|
+
address: '422 W Ring Rd, Buji Town, Longgang',
|
|
2684
|
+
phone: '755-057-2623',
|
|
2685
|
+
email: 'zhanglan@gmail.com',
|
|
2686
|
+
url: 'http://www.sotogregory502.org/ArtsHandicraftsSewing',
|
|
2687
|
+
staffnum: 130,
|
|
2688
|
+
regcapital: 46.1374,
|
|
2689
|
+
paidcapital: 3.4208,
|
|
2690
|
+
insuranceratio: 80.43,
|
|
2691
|
+
isenable: null,
|
|
2692
|
+
status_singleselect: '7',
|
|
2693
|
+
range_multipleselect: ['I3007', 'I3012', 'I3027', 'I3032', 'L2095', 'O3010', 'P1029'],
|
|
2694
|
+
status_radio: '4',
|
|
2695
|
+
range_check: ['F3134', 'I3007', 'I3010', 'I3011', 'I3027', 'I3032', 'I3034', 'L2032'],
|
|
2696
|
+
establishdate: '2022-11-07T06:43:42.000Z',
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
createdAt: '2023-08-25T07:59:57.000Z',
|
|
2700
|
+
updatedAt: '2023-08-30T00:27:44.000Z',
|
|
2701
|
+
createdById: 0,
|
|
2702
|
+
updatedById: 8,
|
|
2703
|
+
testdataid: 12,
|
|
2704
|
+
orgcode: '150012',
|
|
2705
|
+
orgname: '张記有限责任公司',
|
|
2706
|
+
address: '531 4th Section Renmin South Road, Jinjiang District',
|
|
2707
|
+
phone: '28-987-2142',
|
|
2708
|
+
email: 'tsubasayamaz5@outlook.com',
|
|
2709
|
+
url: null,
|
|
2710
|
+
staffnum: 188,
|
|
2711
|
+
regcapital: 282.0915,
|
|
2712
|
+
paidcapital: 230.6067,
|
|
2713
|
+
insuranceratio: 24.06,
|
|
2714
|
+
isenable: true,
|
|
2715
|
+
status_singleselect: '1',
|
|
2716
|
+
range_multipleselect: ['I3011', 'I3012', 'L2032', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
2717
|
+
status_radio: '7',
|
|
2718
|
+
range_check: ['F3134', 'I3007', 'I3008', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'P1029'],
|
|
2719
|
+
establishdate: '2021-01-18T20:54:21.000Z',
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
createdAt: '2023-08-06T11:00:11.000Z',
|
|
2723
|
+
updatedAt: '2023-07-10T02:25:11.737Z',
|
|
2724
|
+
createdById: null,
|
|
2725
|
+
updatedById: null,
|
|
2726
|
+
testdataid: 47,
|
|
2727
|
+
orgcode: '620047',
|
|
2728
|
+
orgname: 'Williams Brothers LLC',
|
|
2729
|
+
address: '东泰五街621号',
|
|
2730
|
+
phone: null,
|
|
2731
|
+
email: 'martin2002@icloud.com',
|
|
2732
|
+
url: 'https://auth.kwokwaiman.us/HouseholdKitchenAppliances',
|
|
2733
|
+
staffnum: 78,
|
|
2734
|
+
regcapital: 279.4844,
|
|
2735
|
+
paidcapital: 266.3442,
|
|
2736
|
+
insuranceratio: 32.12,
|
|
2737
|
+
isenable: true,
|
|
2738
|
+
status_singleselect: '1',
|
|
2739
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3010', 'I3011', 'I3027', 'L2032'],
|
|
2740
|
+
status_radio: '8',
|
|
2741
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3027', 'I3034', 'L2032', 'L2095', 'O3010'],
|
|
2742
|
+
establishdate: '2022-08-14T17:55:17.000Z',
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
createdAt: '2023-08-03T18:16:07.000Z',
|
|
2746
|
+
updatedAt: '2023-05-11T02:43:43.000Z',
|
|
2747
|
+
createdById: 0,
|
|
2748
|
+
updatedById: 9,
|
|
2749
|
+
testdataid: 69,
|
|
2750
|
+
orgcode: '610069',
|
|
2751
|
+
orgname: '致远有限责任公司',
|
|
2752
|
+
address: '龙岗区学园一巷968号',
|
|
2753
|
+
phone: '755-7571-7551',
|
|
2754
|
+
email: 'ynakagawa925@icloud.com',
|
|
2755
|
+
url: 'http://video.tzhiyuan.net/SportsOutdoor',
|
|
2756
|
+
staffnum: 90,
|
|
2757
|
+
regcapital: 2.7332,
|
|
2758
|
+
paidcapital: 108.5354,
|
|
2759
|
+
insuranceratio: 64.76,
|
|
2760
|
+
isenable: null,
|
|
2761
|
+
status_singleselect: '2',
|
|
2762
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3011', 'I3012', 'I3034', 'O3010'],
|
|
2763
|
+
status_radio: '2',
|
|
2764
|
+
range_check: ['I3007', 'I3008', 'I3010', 'I3012', 'I3014', 'I3032'],
|
|
2765
|
+
establishdate: '2021-06-18T12:50:21.000Z',
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
createdAt: '2023-05-16T16:27:22.000Z',
|
|
2769
|
+
updatedAt: '2023-05-13T11:17:34.000Z',
|
|
2770
|
+
createdById: 5,
|
|
2771
|
+
updatedById: 6,
|
|
2772
|
+
testdataid: 80,
|
|
2773
|
+
orgcode: '140080',
|
|
2774
|
+
orgname: '睿贸易有限责任公司',
|
|
2775
|
+
address: '白云区小坪东路90号',
|
|
2776
|
+
phone: '197-2431-7197',
|
|
2777
|
+
email: 'wuwm@icloud.com',
|
|
2778
|
+
url: 'http://drive.hz4.com/HealthBabyCare',
|
|
2779
|
+
staffnum: 36,
|
|
2780
|
+
regcapital: 132.0943,
|
|
2781
|
+
paidcapital: 278.8981,
|
|
2782
|
+
insuranceratio: 40.03,
|
|
2783
|
+
isenable: true,
|
|
2784
|
+
status_singleselect: '8',
|
|
2785
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3011', 'I3032', 'L2032', 'L2095', 'M2070'],
|
|
2786
|
+
status_radio: '8',
|
|
2787
|
+
range_check: ['I3006', 'I3007', 'I3011', 'I3014', 'I3034', 'L2095'],
|
|
2788
|
+
establishdate: '2021-07-12T22:04:31.000Z',
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
createdAt: '2023-03-16T02:59:56.000Z',
|
|
2792
|
+
updatedAt: '2023-07-03T00:12:24.000Z',
|
|
2793
|
+
createdById: 4,
|
|
2794
|
+
updatedById: 6,
|
|
2795
|
+
testdataid: 45,
|
|
2796
|
+
orgcode: '120045',
|
|
2797
|
+
orgname: 'Adams Brothers Inc.',
|
|
2798
|
+
address: '847 West Houston Street',
|
|
2799
|
+
phone: '212-675-9018',
|
|
2800
|
+
email: null,
|
|
2801
|
+
url: 'https://image.ks4.info/Handcrafts',
|
|
2802
|
+
staffnum: null,
|
|
2803
|
+
regcapital: 179.2233,
|
|
2804
|
+
paidcapital: 203.447,
|
|
2805
|
+
insuranceratio: 70.8,
|
|
2806
|
+
isenable: true,
|
|
2807
|
+
status_singleselect: '8',
|
|
2808
|
+
range_multipleselect: ['I3008', 'I3010', 'I3012', 'I3014', 'I3027', 'L2095', 'M2070', 'O3010'],
|
|
2809
|
+
status_radio: '8',
|
|
2810
|
+
range_check: ['F3134', 'I3008', 'I3012', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070', 'P1029'],
|
|
2811
|
+
establishdate: '2021-03-27T22:05:05.000Z',
|
|
2812
|
+
},
|
|
2813
|
+
{
|
|
2814
|
+
createdAt: '2023-07-17T15:00:25.000Z',
|
|
2815
|
+
updatedAt: '2023-05-22T19:30:52.000Z',
|
|
2816
|
+
createdById: 8,
|
|
2817
|
+
updatedById: 9,
|
|
2818
|
+
testdataid: 85,
|
|
2819
|
+
orgcode: '310085',
|
|
2820
|
+
orgname: '秀英系统有限责任公司',
|
|
2821
|
+
address: '492 Pedway',
|
|
2822
|
+
phone: null,
|
|
2823
|
+
email: 'huyu1@outlook.com',
|
|
2824
|
+
url: 'http://image.shilan.net/ArtsHandicraftsSewing',
|
|
2825
|
+
staffnum: null,
|
|
2826
|
+
regcapital: 224.7069,
|
|
2827
|
+
paidcapital: null,
|
|
2828
|
+
insuranceratio: 27.21,
|
|
2829
|
+
isenable: true,
|
|
2830
|
+
status_singleselect: '8',
|
|
2831
|
+
range_multipleselect: ['I3008', 'I3012', 'I3014', 'I3034', 'L2095', 'M2070', 'P1029'],
|
|
2832
|
+
status_radio: '1',
|
|
2833
|
+
range_check: [
|
|
2834
|
+
'F3134',
|
|
2835
|
+
'I3006',
|
|
2836
|
+
'I3007',
|
|
2837
|
+
'I3008',
|
|
2838
|
+
'I3010',
|
|
2839
|
+
'I3011',
|
|
2840
|
+
'I3032',
|
|
2841
|
+
'I3034',
|
|
2842
|
+
'L2032',
|
|
2843
|
+
'L2095',
|
|
2844
|
+
'M2070',
|
|
2845
|
+
'O3010',
|
|
2846
|
+
],
|
|
2847
|
+
establishdate: '2021-03-30T21:18:22.000Z',
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
createdAt: '2023-04-02T16:10:12.000Z',
|
|
2851
|
+
updatedAt: '2023-07-10T02:25:11.740Z',
|
|
2852
|
+
createdById: 7,
|
|
2853
|
+
updatedById: null,
|
|
2854
|
+
testdataid: 72,
|
|
2855
|
+
orgcode: '350072',
|
|
2856
|
+
orgname: '邱記电讯有限责任公司',
|
|
2857
|
+
address: '白云区机场路棠苑街五巷951号',
|
|
2858
|
+
phone: '175-9040-0888',
|
|
2859
|
+
email: 'chiuwaiwong@gmail.com',
|
|
2860
|
+
url: null,
|
|
2861
|
+
staffnum: 162,
|
|
2862
|
+
regcapital: 59.8279,
|
|
2863
|
+
paidcapital: 141.9588,
|
|
2864
|
+
insuranceratio: 86.98,
|
|
2865
|
+
isenable: true,
|
|
2866
|
+
status_singleselect: '5',
|
|
2867
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3010', 'I3011', 'I3027', 'I3034', 'O3010'],
|
|
2868
|
+
status_radio: '6',
|
|
2869
|
+
range_check: null,
|
|
2870
|
+
establishdate: '2022-01-31T21:23:17.000Z',
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
createdAt: '2023-05-07T01:59:43.000Z',
|
|
2874
|
+
updatedAt: '2023-08-13T07:41:11.000Z',
|
|
2875
|
+
createdById: 4,
|
|
2876
|
+
updatedById: 10,
|
|
2877
|
+
testdataid: 100,
|
|
2878
|
+
orgcode: '310100',
|
|
2879
|
+
orgname: '陈記发展贸易有限责任公司',
|
|
2880
|
+
address: '环区南街二巷453号',
|
|
2881
|
+
phone: '769-5777-9743',
|
|
2882
|
+
email: 'siu817@icloud.com',
|
|
2883
|
+
url: 'https://auth.donfreem506.org/SportsOutdoor',
|
|
2884
|
+
staffnum: 193,
|
|
2885
|
+
regcapital: 264.7365,
|
|
2886
|
+
paidcapital: 32.0125,
|
|
2887
|
+
insuranceratio: 46.66,
|
|
2888
|
+
isenable: null,
|
|
2889
|
+
status_singleselect: '7',
|
|
2890
|
+
range_multipleselect: null,
|
|
2891
|
+
status_radio: '7',
|
|
2892
|
+
range_check: ['F3134', 'I3006', 'I3011', 'I3027', 'I3034', 'O3010', 'P1029'],
|
|
2893
|
+
establishdate: '2023-05-23T04:27:32.000Z',
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
createdAt: '2023-08-01T08:19:39.000Z',
|
|
2897
|
+
updatedAt: '2023-07-17T02:48:36.000Z',
|
|
2898
|
+
createdById: 3,
|
|
2899
|
+
updatedById: 5,
|
|
2900
|
+
testdataid: 30,
|
|
2901
|
+
orgcode: '550030',
|
|
2902
|
+
orgname: '子异技术有限责任公司',
|
|
2903
|
+
address: '成华区二仙桥东三路698号',
|
|
2904
|
+
phone: null,
|
|
2905
|
+
email: null,
|
|
2906
|
+
url: 'https://drive.patterson44.net/ArtsHandicraftsSewing',
|
|
2907
|
+
staffnum: null,
|
|
2908
|
+
regcapital: 88.4317,
|
|
2909
|
+
paidcapital: 232.3953,
|
|
2910
|
+
insuranceratio: 88.86,
|
|
2911
|
+
isenable: true,
|
|
2912
|
+
status_singleselect: '6',
|
|
2913
|
+
range_multipleselect: ['I3007', 'L2032', 'L2095', 'M2070', 'P1029'],
|
|
2914
|
+
status_radio: '7',
|
|
2915
|
+
range_check: ['F3134', 'I3011', 'I3032'],
|
|
2916
|
+
establishdate: '2022-01-26T08:14:41.000Z',
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
createdAt: '2023-07-20T08:54:02.000Z',
|
|
2920
|
+
updatedAt: '2023-06-15T20:12:54.000Z',
|
|
2921
|
+
createdById: 6,
|
|
2922
|
+
updatedById: 8,
|
|
2923
|
+
testdataid: 75,
|
|
2924
|
+
orgcode: '310075',
|
|
2925
|
+
orgname: '武記有限责任公司',
|
|
2926
|
+
address: '545 Rush Street',
|
|
2927
|
+
phone: '312-022-1358',
|
|
2928
|
+
email: 'xiuying1125@hotmail.com',
|
|
2929
|
+
url: 'https://video.zhezi.jp/Books',
|
|
2930
|
+
staffnum: 197,
|
|
2931
|
+
regcapital: 136.3425,
|
|
2932
|
+
paidcapital: 96.297,
|
|
2933
|
+
insuranceratio: 28.79,
|
|
2934
|
+
isenable: true,
|
|
2935
|
+
status_singleselect: '6',
|
|
2936
|
+
range_multipleselect: ['I3008', 'I3012', 'I3034', 'O3010', 'P1029'],
|
|
2937
|
+
status_radio: '7',
|
|
2938
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070'],
|
|
2939
|
+
establishdate: '2021-01-26T06:55:36.000Z',
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
createdAt: '2023-07-12T18:10:51.000Z',
|
|
2943
|
+
updatedAt: '2023-08-19T13:15:44.000Z',
|
|
2944
|
+
createdById: 3,
|
|
2945
|
+
updatedById: 1,
|
|
2946
|
+
testdataid: 23,
|
|
2947
|
+
orgcode: '420023',
|
|
2948
|
+
orgname: '秀英有限责任公司',
|
|
2949
|
+
address: null,
|
|
2950
|
+
phone: '330-890-8118',
|
|
2951
|
+
email: 'grahadiana1127@icloud.com',
|
|
2952
|
+
url: 'https://auth.kkin.org/CellPhonesAccessories',
|
|
2953
|
+
staffnum: 152,
|
|
2954
|
+
regcapital: 190.0139,
|
|
2955
|
+
paidcapital: 274.6092,
|
|
2956
|
+
insuranceratio: 6.39,
|
|
2957
|
+
isenable: true,
|
|
2958
|
+
status_singleselect: '5',
|
|
2959
|
+
range_multipleselect: ['I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'L2032', 'O3010', 'P1029'],
|
|
2960
|
+
status_radio: '2',
|
|
2961
|
+
range_check: ['I3006', 'I3007', 'I3010', 'I3012', 'I3014', 'I3032', 'I3034', 'L2095', 'M2070'],
|
|
2962
|
+
establishdate: '2023-06-21T21:47:05.000Z',
|
|
2963
|
+
},
|
|
2964
|
+
{
|
|
2965
|
+
createdAt: '2023-06-30T09:34:24.000Z',
|
|
2966
|
+
updatedAt: '2023-07-10T02:25:11.728Z',
|
|
2967
|
+
createdById: null,
|
|
2968
|
+
updatedById: 3,
|
|
2969
|
+
testdataid: 26,
|
|
2970
|
+
orgcode: '520026',
|
|
2971
|
+
orgname: '钱記有限责任公司',
|
|
2972
|
+
address: '106 S Broadway',
|
|
2973
|
+
phone: null,
|
|
2974
|
+
email: 'hla53@gmail.com',
|
|
2975
|
+
url: 'http://drive.songzhiyuan.jp/SportsOutdoor',
|
|
2976
|
+
staffnum: 128,
|
|
2977
|
+
regcapital: 45.8576,
|
|
2978
|
+
paidcapital: 49.0852,
|
|
2979
|
+
insuranceratio: 69.17,
|
|
2980
|
+
isenable: true,
|
|
2981
|
+
status_singleselect: '5',
|
|
2982
|
+
range_multipleselect: ['F3134', 'I3010', 'L2095', 'P1029'],
|
|
2983
|
+
status_radio: '5',
|
|
2984
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3027', 'I3032', 'L2095', 'O3010'],
|
|
2985
|
+
establishdate: '2022-03-22T20:41:25.000Z',
|
|
2986
|
+
},
|
|
2987
|
+
{
|
|
2988
|
+
createdAt: '2023-05-24T19:59:54.000Z',
|
|
2989
|
+
updatedAt: '2023-08-20T10:07:16.000Z',
|
|
2990
|
+
createdById: 8,
|
|
2991
|
+
updatedById: 3,
|
|
2992
|
+
testdataid: 37,
|
|
2993
|
+
orgcode: '620037',
|
|
2994
|
+
orgname: 'Cindy Logistic Inc.',
|
|
2995
|
+
address: '791 Columbia St',
|
|
2996
|
+
phone: '718-173-2935',
|
|
2997
|
+
email: 'satoyuna2@yahoo.com',
|
|
2998
|
+
url: 'https://www.yunxi8.cn/MusicalInstrument',
|
|
2999
|
+
staffnum: 6,
|
|
3000
|
+
regcapital: 39.6587,
|
|
3001
|
+
paidcapital: 118.6882,
|
|
3002
|
+
insuranceratio: 25.94,
|
|
3003
|
+
isenable: true,
|
|
3004
|
+
status_singleselect: '2',
|
|
3005
|
+
range_multipleselect: ['F3134', 'I3007', 'I3008', 'I3012', 'L2032', 'L2095', 'O3010'],
|
|
3006
|
+
status_radio: '5',
|
|
3007
|
+
range_check: null,
|
|
3008
|
+
establishdate: null,
|
|
3009
|
+
},
|
|
3010
|
+
{
|
|
3011
|
+
createdAt: '2023-07-10T12:04:12.000Z',
|
|
3012
|
+
updatedAt: '2023-07-10T02:25:11.742Z',
|
|
3013
|
+
createdById: 6,
|
|
3014
|
+
updatedById: null,
|
|
3015
|
+
testdataid: 78,
|
|
3016
|
+
orgcode: '140078',
|
|
3017
|
+
orgname: '陆記有限责任公司',
|
|
3018
|
+
address: '578 Xiaoping E Rd, Baiyun ',
|
|
3019
|
+
phone: '155-0484-9694',
|
|
3020
|
+
email: 'fukudahikari@gmail.com',
|
|
3021
|
+
url: 'https://auth.gibsondon.us/CollectiblesFineArt',
|
|
3022
|
+
staffnum: 79,
|
|
3023
|
+
regcapital: 21.868,
|
|
3024
|
+
paidcapital: 252.1746,
|
|
3025
|
+
insuranceratio: 58.72,
|
|
3026
|
+
isenable: true,
|
|
3027
|
+
status_singleselect: '8',
|
|
3028
|
+
range_multipleselect: ['I3010', 'I3032', 'L2032', 'L2095', 'O3010', 'P1029'],
|
|
3029
|
+
status_radio: '5',
|
|
3030
|
+
range_check: ['F3134', 'I3008', 'I3010', 'I3012', 'I3027', 'I3034', 'L2032', 'M2070', 'P1029'],
|
|
3031
|
+
establishdate: '2021-04-16T16:14:38.000Z',
|
|
3032
|
+
},
|
|
3033
|
+
{
|
|
3034
|
+
createdAt: '2023-07-05T20:02:07.000Z',
|
|
3035
|
+
updatedAt: '2023-05-27T21:16:46.000Z',
|
|
3036
|
+
createdById: 10,
|
|
3037
|
+
updatedById: 5,
|
|
3038
|
+
testdataid: 71,
|
|
3039
|
+
orgcode: '630071',
|
|
3040
|
+
orgname: '晓明有限责任公司',
|
|
3041
|
+
address: "19 West Chang'an Avenue, Xicheng District",
|
|
3042
|
+
phone: '156-1137-8442',
|
|
3043
|
+
email: 'sakurai46@icloud.com',
|
|
3044
|
+
url: 'https://auth.xiaoming1223.cn/Beauty',
|
|
3045
|
+
staffnum: 82,
|
|
3046
|
+
regcapital: 250.4023,
|
|
3047
|
+
paidcapital: 186.6815,
|
|
3048
|
+
insuranceratio: 95.41,
|
|
3049
|
+
isenable: true,
|
|
3050
|
+
status_singleselect: '3',
|
|
3051
|
+
range_multipleselect: ['F3134', 'I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'I3034', 'L2032', 'P1029'],
|
|
3052
|
+
status_radio: '7',
|
|
3053
|
+
range_check: ['I3006', 'I3007', 'I3010', 'I3011', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'O3010'],
|
|
3054
|
+
establishdate: '2022-11-27T14:02:00.000Z',
|
|
3055
|
+
},
|
|
3056
|
+
{
|
|
3057
|
+
createdAt: '2023-04-03T11:41:58.000Z',
|
|
3058
|
+
updatedAt: '2023-07-25T07:08:25.000Z',
|
|
3059
|
+
createdById: 4,
|
|
3060
|
+
updatedById: 5,
|
|
3061
|
+
testdataid: 53,
|
|
3062
|
+
orgcode: '420053',
|
|
3063
|
+
orgname: '睿工业有限责任公司',
|
|
3064
|
+
address: '914 Xiaoping E Rd, Baiyun ',
|
|
3065
|
+
phone: '20-439-3781',
|
|
3066
|
+
email: 'lucimoreno@outlook.com',
|
|
3067
|
+
url: 'https://www.lanwang1968.biz/BaggageTravelEquipment',
|
|
3068
|
+
staffnum: 138,
|
|
3069
|
+
regcapital: 176.73,
|
|
3070
|
+
paidcapital: 238.5599,
|
|
3071
|
+
insuranceratio: 0.32,
|
|
3072
|
+
isenable: true,
|
|
3073
|
+
status_singleselect: '8',
|
|
3074
|
+
range_multipleselect: ['I3008', 'I3014', 'I3027', 'I3032', 'L2032', 'O3010'],
|
|
3075
|
+
status_radio: '1',
|
|
3076
|
+
range_check: ['I3007', 'I3008', 'I3010', 'I3011', 'I3027', 'M2070', 'O3010', 'P1029'],
|
|
3077
|
+
establishdate: '2021-04-22T09:11:54.000Z',
|
|
3078
|
+
},
|
|
3079
|
+
{
|
|
3080
|
+
createdAt: '2023-04-12T12:17:12.000Z',
|
|
3081
|
+
updatedAt: '2023-08-28T05:02:11.000Z',
|
|
3082
|
+
createdById: 3,
|
|
3083
|
+
updatedById: 5,
|
|
3084
|
+
testdataid: 70,
|
|
3085
|
+
orgcode: '620070',
|
|
3086
|
+
orgname: '唐有限责任公司',
|
|
3087
|
+
address: '449 East Alley',
|
|
3088
|
+
phone: '614-258-2477',
|
|
3089
|
+
email: 'swtong17@gmail.com',
|
|
3090
|
+
url: 'https://www.colesherr5.us/FilmSupplies',
|
|
3091
|
+
staffnum: 42,
|
|
3092
|
+
regcapital: 232.1782,
|
|
3093
|
+
paidcapital: 280.8157,
|
|
3094
|
+
insuranceratio: 20.07,
|
|
3095
|
+
isenable: true,
|
|
3096
|
+
status_singleselect: '7',
|
|
3097
|
+
range_multipleselect: ['F3134', 'I3007', 'I3008', 'I3012', 'I3034', 'L2095', 'P1029'],
|
|
3098
|
+
status_radio: '6',
|
|
3099
|
+
range_check: ['I3010', 'I3027', 'I3032', 'O3010'],
|
|
3100
|
+
establishdate: '2023-10-29T00:43:12.000Z',
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
createdAt: '2023-04-13T23:19:56.000Z',
|
|
3104
|
+
updatedAt: '2023-08-08T03:08:04.000Z',
|
|
3105
|
+
createdById: 3,
|
|
3106
|
+
updatedById: 6,
|
|
3107
|
+
testdataid: 9,
|
|
3108
|
+
orgcode: '630009',
|
|
3109
|
+
orgname: '刘有限责任公司',
|
|
3110
|
+
address: '917 Alameda Street',
|
|
3111
|
+
phone: '213-743-6878',
|
|
3112
|
+
email: 'huimeiwong1127@icloud.com',
|
|
3113
|
+
url: 'https://image.rinkond1.co.jp/IndustrialScientificSupplies',
|
|
3114
|
+
staffnum: 190,
|
|
3115
|
+
regcapital: 264.891,
|
|
3116
|
+
paidcapital: 249.9184,
|
|
3117
|
+
insuranceratio: 54.71,
|
|
3118
|
+
isenable: true,
|
|
3119
|
+
status_singleselect: '8',
|
|
3120
|
+
range_multipleselect: null,
|
|
3121
|
+
status_radio: '3',
|
|
3122
|
+
range_check: ['F3134', 'I3007', 'I3010', 'I3012', 'I3014', 'I3032', 'I3034', 'L2095', 'P1029'],
|
|
3123
|
+
establishdate: '2023-08-22T00:30:45.000Z',
|
|
3124
|
+
},
|
|
3125
|
+
{
|
|
3126
|
+
createdAt: '2023-06-21T00:53:37.000Z',
|
|
3127
|
+
updatedAt: '2023-05-24T10:30:53.000Z',
|
|
3128
|
+
createdById: 1,
|
|
3129
|
+
updatedById: 10,
|
|
3130
|
+
testdataid: 24,
|
|
3131
|
+
orgcode: '140024',
|
|
3132
|
+
orgname: '秀英有限责任公司',
|
|
3133
|
+
address: '208 North Michigan Ave',
|
|
3134
|
+
phone: '312-222-4942',
|
|
3135
|
+
email: 'sitls@outlook.com',
|
|
3136
|
+
url: 'https://auth.ededward.co.jp/ClothingShoesandJewelry',
|
|
3137
|
+
staffnum: null,
|
|
3138
|
+
regcapital: 11.602,
|
|
3139
|
+
paidcapital: 289.2036,
|
|
3140
|
+
insuranceratio: 19.3,
|
|
3141
|
+
isenable: true,
|
|
3142
|
+
status_singleselect: '4',
|
|
3143
|
+
range_multipleselect: ['I3007', 'I3010', 'I3011', 'I3012', 'I3032', 'I3034', 'L2095', 'O3010'],
|
|
3144
|
+
status_radio: '2',
|
|
3145
|
+
range_check: ['F3134', 'I3007', 'I3012', 'I3014', 'I3027', 'L2032', 'O3010', 'P1029'],
|
|
3146
|
+
establishdate: '2023-04-14T10:31:47.000Z',
|
|
3147
|
+
},
|
|
3148
|
+
{
|
|
3149
|
+
createdAt: '2023-08-20T18:44:46.000Z',
|
|
3150
|
+
updatedAt: '2023-07-09T19:37:01.000Z',
|
|
3151
|
+
createdById: 7,
|
|
3152
|
+
updatedById: 4,
|
|
3153
|
+
testdataid: 15,
|
|
3154
|
+
orgcode: '150015',
|
|
3155
|
+
orgname: 'Doris LLC',
|
|
3156
|
+
address: '海珠区江南西路205号',
|
|
3157
|
+
phone: '152-0553-7772',
|
|
3158
|
+
email: 'onkay5@icloud.com',
|
|
3159
|
+
url: 'http://auth.yuningshi.cn/Baby',
|
|
3160
|
+
staffnum: 51,
|
|
3161
|
+
regcapital: 62.3067,
|
|
3162
|
+
paidcapital: 243.9179,
|
|
3163
|
+
insuranceratio: 65.83,
|
|
3164
|
+
isenable: true,
|
|
3165
|
+
status_singleselect: '1',
|
|
3166
|
+
range_multipleselect: ['I3007', 'I3014', 'I3032', 'L2095', 'M2070', 'P1029'],
|
|
3167
|
+
status_radio: '8',
|
|
3168
|
+
range_check: ['I3007', 'I3010', 'I3011', 'I3014', 'I3032', 'M2070', 'O3010'],
|
|
3169
|
+
establishdate: '2021-12-17T06:08:17.000Z',
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
createdAt: '2023-07-08T09:41:18.000Z',
|
|
3173
|
+
updatedAt: '2023-08-04T03:25:41.000Z',
|
|
3174
|
+
createdById: 9,
|
|
3175
|
+
updatedById: 8,
|
|
3176
|
+
testdataid: 11,
|
|
3177
|
+
orgcode: '230011',
|
|
3178
|
+
orgname: 'Alexander Trading Inc.',
|
|
3179
|
+
address: '21 4th Section Renmin South Road, Jinjiang District',
|
|
3180
|
+
phone: '28-964-2526',
|
|
3181
|
+
email: 'stewart324@gmail.com',
|
|
3182
|
+
url: null,
|
|
3183
|
+
staffnum: 74,
|
|
3184
|
+
regcapital: 205.9118,
|
|
3185
|
+
paidcapital: 252.7905,
|
|
3186
|
+
insuranceratio: 32.57,
|
|
3187
|
+
isenable: true,
|
|
3188
|
+
status_singleselect: '4',
|
|
3189
|
+
range_multipleselect: ['F3134', 'I3006', 'I3010', 'I3011', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070'],
|
|
3190
|
+
status_radio: '4',
|
|
3191
|
+
range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
3192
|
+
establishdate: '2022-10-25T03:57:53.000Z',
|
|
3193
|
+
},
|
|
3194
|
+
{
|
|
3195
|
+
createdAt: '2023-06-10T01:08:46.000Z',
|
|
3196
|
+
updatedAt: '2023-08-18T23:07:28.000Z',
|
|
3197
|
+
createdById: 6,
|
|
3198
|
+
updatedById: 8,
|
|
3199
|
+
testdataid: 58,
|
|
3200
|
+
orgcode: '340058',
|
|
3201
|
+
orgname: 'Frank Software LLC',
|
|
3202
|
+
address: '天河区天河路330号',
|
|
3203
|
+
phone: '165-2214-3345',
|
|
3204
|
+
email: 'crystortiz8@icloud.com',
|
|
3205
|
+
url: 'https://auth.richardlee7.co.jp/ClothingShoesandJewelry',
|
|
3206
|
+
staffnum: 180,
|
|
3207
|
+
regcapital: 17.056,
|
|
3208
|
+
paidcapital: 156.8234,
|
|
3209
|
+
insuranceratio: 67.28,
|
|
3210
|
+
isenable: null,
|
|
3211
|
+
status_singleselect: '1',
|
|
3212
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3011', 'I3032', 'L2032', 'L2095', 'O3010'],
|
|
3213
|
+
status_radio: '6',
|
|
3214
|
+
range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'L2095'],
|
|
3215
|
+
establishdate: '2021-02-13T02:03:49.000Z',
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
createdAt: '2023-07-01T15:28:34.000Z',
|
|
3219
|
+
updatedAt: '2023-07-10T02:25:11.726Z',
|
|
3220
|
+
createdById: null,
|
|
3221
|
+
updatedById: 5,
|
|
3222
|
+
testdataid: 39,
|
|
3223
|
+
orgcode: '510039',
|
|
3224
|
+
orgname: '龚电讯有限责任公司',
|
|
3225
|
+
address: '365 Central Avenue',
|
|
3226
|
+
phone: '838-434-4757',
|
|
3227
|
+
email: 'barnicholas@gmail.com',
|
|
3228
|
+
url: 'http://www.lokht1970.info/CDsVinyl',
|
|
3229
|
+
staffnum: 83,
|
|
3230
|
+
regcapital: 21.7374,
|
|
3231
|
+
paidcapital: 120.7973,
|
|
3232
|
+
insuranceratio: 47.33,
|
|
3233
|
+
isenable: true,
|
|
3234
|
+
status_singleselect: '1',
|
|
3235
|
+
range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3034', 'L2095'],
|
|
3236
|
+
status_radio: '7',
|
|
3237
|
+
range_check: ['I3006', 'I3032', 'L2095', 'P1029'],
|
|
3238
|
+
establishdate: '2022-01-02T12:32:43.000Z',
|
|
3239
|
+
},
|
|
3240
|
+
{
|
|
3241
|
+
createdAt: '2023-04-03T15:27:23.000Z',
|
|
3242
|
+
updatedAt: '2023-05-29T18:51:28.000Z',
|
|
3243
|
+
createdById: 1,
|
|
3244
|
+
updatedById: 10,
|
|
3245
|
+
testdataid: 18,
|
|
3246
|
+
orgcode: '120018',
|
|
3247
|
+
orgname: '胡工程有限责任公司',
|
|
3248
|
+
address: '279 Zhongshan 5th Rd, Zimaling Shangquan',
|
|
3249
|
+
phone: '190-4080-9140',
|
|
3250
|
+
email: 'guanqi@icloud.com',
|
|
3251
|
+
url: 'http://www.nancyha5.us/CDsVinyl',
|
|
3252
|
+
staffnum: 112,
|
|
3253
|
+
regcapital: 144.4962,
|
|
3254
|
+
paidcapital: 145.2596,
|
|
3255
|
+
insuranceratio: 14.18,
|
|
3256
|
+
isenable: null,
|
|
3257
|
+
status_singleselect: '1',
|
|
3258
|
+
range_multipleselect: null,
|
|
3259
|
+
status_radio: '5',
|
|
3260
|
+
range_check: ['F3134', 'I3008', 'I3014', 'M2070', 'O3010'],
|
|
3261
|
+
establishdate: '2023-04-21T15:43:03.000Z',
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
createdAt: '2023-06-18T11:53:30.000Z',
|
|
3265
|
+
updatedAt: '2023-08-03T11:12:45.000Z',
|
|
3266
|
+
createdById: 0,
|
|
3267
|
+
updatedById: 7,
|
|
3268
|
+
testdataid: 79,
|
|
3269
|
+
orgcode: '130079',
|
|
3270
|
+
orgname: '卢記工业有限责任公司',
|
|
3271
|
+
address: '坑美十五巷202号',
|
|
3272
|
+
phone: '769-6447-1441',
|
|
3273
|
+
email: null,
|
|
3274
|
+
url: 'https://www.simmons96.org/Appliances',
|
|
3275
|
+
staffnum: 144,
|
|
3276
|
+
regcapital: 207.3241,
|
|
3277
|
+
paidcapital: 128.2934,
|
|
3278
|
+
insuranceratio: 13.18,
|
|
3279
|
+
isenable: true,
|
|
3280
|
+
status_singleselect: '6',
|
|
3281
|
+
range_multipleselect: ['I3007', 'I3008', 'I3011', 'I3014', 'I3027', 'I3034', 'L2032', 'L2095'],
|
|
3282
|
+
status_radio: '7',
|
|
3283
|
+
range_check: ['I3006', 'I3008', 'I3010', 'I3014', 'M2070', 'O3010'],
|
|
3284
|
+
establishdate: '2021-05-10T10:57:24.000Z',
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
createdAt: '2023-08-16T10:27:52.000Z',
|
|
3288
|
+
updatedAt: '2023-07-10T02:25:11.725Z',
|
|
3289
|
+
createdById: null,
|
|
3290
|
+
updatedById: 4,
|
|
3291
|
+
testdataid: 63,
|
|
3292
|
+
orgcode: '320063',
|
|
3293
|
+
orgname: 'Perry Pharmaceutical LLC',
|
|
3294
|
+
address: '房山区岳琉路956号',
|
|
3295
|
+
phone: null,
|
|
3296
|
+
email: 'kwyin302@hotmail.com',
|
|
3297
|
+
url: 'http://video.wingfatcha7.us/ComputersElectronics',
|
|
3298
|
+
staffnum: 169,
|
|
3299
|
+
regcapital: 143.6456,
|
|
3300
|
+
paidcapital: 17.5641,
|
|
3301
|
+
insuranceratio: 49.78,
|
|
3302
|
+
isenable: true,
|
|
3303
|
+
status_singleselect: '5',
|
|
3304
|
+
range_multipleselect: ['I3007', 'I3008', 'I3027', 'I3034', 'L2095', 'M2070'],
|
|
3305
|
+
status_radio: '2',
|
|
3306
|
+
range_check: ['F3134', 'I3006', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'L2095'],
|
|
3307
|
+
establishdate: '2021-04-22T09:53:07.000Z',
|
|
3308
|
+
},
|
|
3309
|
+
{
|
|
3310
|
+
createdAt: '2023-07-10T19:32:09.000Z',
|
|
3311
|
+
updatedAt: '2023-07-10T02:25:11.732Z',
|
|
3312
|
+
createdById: null,
|
|
3313
|
+
updatedById: 7,
|
|
3314
|
+
testdataid: 94,
|
|
3315
|
+
orgcode: '430094',
|
|
3316
|
+
orgname: 'Aguilar LLC',
|
|
3317
|
+
address: '710 1st Ave',
|
|
3318
|
+
phone: '718-677-4225',
|
|
3319
|
+
email: 'mchic@outlook.com',
|
|
3320
|
+
url: 'http://www.wtimothy.info/AppsGames',
|
|
3321
|
+
staffnum: 158,
|
|
3322
|
+
regcapital: 229.4348,
|
|
3323
|
+
paidcapital: 248.8399,
|
|
3324
|
+
insuranceratio: 82.42,
|
|
3325
|
+
isenable: true,
|
|
3326
|
+
status_singleselect: '3',
|
|
3327
|
+
range_multipleselect: ['I3006', 'I3008', 'I3010', 'I3011', 'I3012', 'I3014', 'L2032', 'P1029'],
|
|
3328
|
+
status_radio: '1',
|
|
3329
|
+
range_check: [
|
|
3330
|
+
'I3006',
|
|
3331
|
+
'I3007',
|
|
3332
|
+
'I3008',
|
|
3333
|
+
'I3012',
|
|
3334
|
+
'I3014',
|
|
3335
|
+
'I3027',
|
|
3336
|
+
'I3032',
|
|
3337
|
+
'L2032',
|
|
3338
|
+
'L2095',
|
|
3339
|
+
'M2070',
|
|
3340
|
+
'O3010',
|
|
3341
|
+
'P1029',
|
|
3342
|
+
],
|
|
3343
|
+
establishdate: '2021-04-20T23:37:47.000Z',
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
createdAt: '2023-07-01T04:31:41.000Z',
|
|
3347
|
+
updatedAt: '2023-05-06T19:48:18.000Z',
|
|
3348
|
+
createdById: 6,
|
|
3349
|
+
updatedById: 4,
|
|
3350
|
+
testdataid: 90,
|
|
3351
|
+
orgcode: '640090',
|
|
3352
|
+
orgname: 'Maria Communications LLC',
|
|
3353
|
+
address: '東城区東直門內大街160号',
|
|
3354
|
+
phone: '10-4155-4174',
|
|
3355
|
+
email: 'keithug@gmail.com',
|
|
3356
|
+
url: 'https://auth.ayahasegawa9.net/Others',
|
|
3357
|
+
staffnum: 195,
|
|
3358
|
+
regcapital: 24.8107,
|
|
3359
|
+
paidcapital: 92.6292,
|
|
3360
|
+
insuranceratio: 67.85,
|
|
3361
|
+
isenable: true,
|
|
3362
|
+
status_singleselect: '8',
|
|
3363
|
+
range_multipleselect: ['I3007', 'I3008', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070', 'P1029'],
|
|
3364
|
+
status_radio: '2',
|
|
3365
|
+
range_check: ['I3006', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027', 'L2032', 'M2070', 'P1029'],
|
|
3366
|
+
establishdate: '2023-06-19T18:33:58.000Z',
|
|
3367
|
+
},
|
|
3368
|
+
{
|
|
3369
|
+
createdAt: '2023-04-30T13:55:12.000Z',
|
|
3370
|
+
updatedAt: '2023-07-10T02:25:11.739Z',
|
|
3371
|
+
createdById: 10,
|
|
3372
|
+
updatedById: null,
|
|
3373
|
+
testdataid: 61,
|
|
3374
|
+
orgcode: '640061',
|
|
3375
|
+
orgname: '秀英工程有限责任公司',
|
|
3376
|
+
address: '锦江区人民南路四段972号',
|
|
3377
|
+
phone: '28-8229-5494',
|
|
3378
|
+
email: 'kkakeung@hotmail.com',
|
|
3379
|
+
url: 'https://image.daisauman.co.jp/BaggageTravelEquipment',
|
|
3380
|
+
staffnum: 169,
|
|
3381
|
+
regcapital: 8.3627,
|
|
3382
|
+
paidcapital: 267.237,
|
|
3383
|
+
insuranceratio: 41.35,
|
|
3384
|
+
isenable: true,
|
|
3385
|
+
status_singleselect: '7',
|
|
3386
|
+
range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'L2032', 'L2095', 'P1029'],
|
|
3387
|
+
status_radio: '1',
|
|
3388
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3014', 'I3027', 'I3034', 'L2032', 'P1029'],
|
|
3389
|
+
establishdate: '2021-09-20T16:20:50.000Z',
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
createdAt: '2023-04-04T06:33:16.000Z',
|
|
3393
|
+
updatedAt: '2023-06-11T22:08:56.000Z',
|
|
3394
|
+
createdById: 3,
|
|
3395
|
+
updatedById: 4,
|
|
3396
|
+
testdataid: 1,
|
|
3397
|
+
orgcode: '320001',
|
|
3398
|
+
orgname: '子异有限责任公司',
|
|
3399
|
+
address: '锦江区人民南路四段831号',
|
|
3400
|
+
phone: '188-8510-5193',
|
|
3401
|
+
email: 'yamadaayato907@yahoo.com',
|
|
3402
|
+
url: 'http://video.merichardson5.biz/SportsOutdoor',
|
|
3403
|
+
staffnum: 87,
|
|
3404
|
+
regcapital: 224.0227,
|
|
3405
|
+
paidcapital: 288.8069,
|
|
3406
|
+
insuranceratio: 0.75,
|
|
3407
|
+
isenable: true,
|
|
3408
|
+
status_singleselect: '1',
|
|
3409
|
+
range_multipleselect: [
|
|
3410
|
+
'I3006',
|
|
3411
|
+
'I3007',
|
|
3412
|
+
'I3010',
|
|
3413
|
+
'I3011',
|
|
3414
|
+
'I3012',
|
|
3415
|
+
'I3027',
|
|
3416
|
+
'I3034',
|
|
3417
|
+
'L2032',
|
|
3418
|
+
'L2095',
|
|
3419
|
+
'M2070',
|
|
3420
|
+
'O3010',
|
|
3421
|
+
],
|
|
3422
|
+
status_radio: '1',
|
|
3423
|
+
range_check: ['F3134', 'I3007', 'I3010', 'I3012', 'I3032', 'L2032', 'M2070'],
|
|
3424
|
+
establishdate: '2022-12-03T17:27:35.000Z',
|
|
3425
|
+
},
|
|
3426
|
+
{
|
|
3427
|
+
createdAt: '2023-04-02T06:15:56.000Z',
|
|
3428
|
+
updatedAt: '2023-06-20T05:21:38.000Z',
|
|
3429
|
+
createdById: 3,
|
|
3430
|
+
updatedById: 4,
|
|
3431
|
+
testdataid: 38,
|
|
3432
|
+
orgcode: '450038',
|
|
3433
|
+
orgname: "Mills's Toy Inc.",
|
|
3434
|
+
address: '成华区二仙桥东三路904号',
|
|
3435
|
+
phone: '28-3185-9051',
|
|
3436
|
+
email: 'moria@icloud.com',
|
|
3437
|
+
url: 'https://video.sekat.net/ComputersElectronics',
|
|
3438
|
+
staffnum: 39,
|
|
3439
|
+
regcapital: 173.4007,
|
|
3440
|
+
paidcapital: 38.577,
|
|
3441
|
+
insuranceratio: 84.44,
|
|
3442
|
+
isenable: true,
|
|
3443
|
+
status_singleselect: '5',
|
|
3444
|
+
range_multipleselect: ['I3011', 'I3032', 'L2095', 'M2070', 'P1029'],
|
|
3445
|
+
status_radio: '7',
|
|
3446
|
+
range_check: null,
|
|
3447
|
+
establishdate: '2022-05-21T01:29:54.000Z',
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
createdAt: '2023-03-13T10:50:26.000Z',
|
|
3451
|
+
updatedAt: '2023-06-01T14:40:47.000Z',
|
|
3452
|
+
createdById: 6,
|
|
3453
|
+
updatedById: 6,
|
|
3454
|
+
testdataid: 14,
|
|
3455
|
+
orgcode: '420014',
|
|
3456
|
+
orgname: '安琪制药有限责任公司',
|
|
3457
|
+
address: '986 1st Ave',
|
|
3458
|
+
phone: '718-947-3048',
|
|
3459
|
+
email: 'powm@yahoo.com',
|
|
3460
|
+
url: 'http://drive.chengsw.co.jp/AutomotivePartsAccessories',
|
|
3461
|
+
staffnum: 174,
|
|
3462
|
+
regcapital: 142.9716,
|
|
3463
|
+
paidcapital: 80.9565,
|
|
3464
|
+
insuranceratio: 23.87,
|
|
3465
|
+
isenable: null,
|
|
3466
|
+
status_singleselect: '4',
|
|
3467
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'I3032', 'L2032', 'L2095'],
|
|
3468
|
+
status_radio: '1',
|
|
3469
|
+
range_check: ['F3134', 'I3006', 'I3010', 'I3014', 'I3027', 'I3032', 'L2032'],
|
|
3470
|
+
establishdate: '2022-04-02T23:44:50.000Z',
|
|
3471
|
+
},
|
|
3472
|
+
{
|
|
3473
|
+
createdAt: '2023-05-01T17:47:37.000Z',
|
|
3474
|
+
updatedAt: '2023-07-11T11:57:11.000Z',
|
|
3475
|
+
createdById: 1,
|
|
3476
|
+
updatedById: 6,
|
|
3477
|
+
testdataid: 7,
|
|
3478
|
+
orgcode: '120007',
|
|
3479
|
+
orgname: 'Dawn Consultants Inc.',
|
|
3480
|
+
address: '西城区西長安街924号',
|
|
3481
|
+
phone: '10-368-3528',
|
|
3482
|
+
email: 'onkayya@yahoo.com',
|
|
3483
|
+
url: 'http://auth.che7.us/PetSupplies',
|
|
3484
|
+
staffnum: 18,
|
|
3485
|
+
regcapital: 118.5422,
|
|
3486
|
+
paidcapital: 26.4247,
|
|
3487
|
+
insuranceratio: 3.54,
|
|
3488
|
+
isenable: true,
|
|
3489
|
+
status_singleselect: '2',
|
|
3490
|
+
range_multipleselect: ['I3006', 'I3007', 'I3014', 'I3027', 'I3032', 'L2095', 'O3010', 'P1029'],
|
|
3491
|
+
status_radio: '2',
|
|
3492
|
+
range_check: ['F3134', 'I3010', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'P1029'],
|
|
3493
|
+
establishdate: '2023-08-06T11:29:00.000Z',
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
createdAt: '2023-06-27T04:27:55.000Z',
|
|
3497
|
+
updatedAt: '2023-07-22T04:49:39.000Z',
|
|
3498
|
+
createdById: 5,
|
|
3499
|
+
updatedById: 3,
|
|
3500
|
+
testdataid: 96,
|
|
3501
|
+
orgcode: '210096',
|
|
3502
|
+
orgname: 'Samuel Electronic Inc.',
|
|
3503
|
+
address: '53 Dong Zhi Men, Dongcheng District',
|
|
3504
|
+
phone: '169-1441-5592',
|
|
3505
|
+
email: 'xuyuning@mail.com',
|
|
3506
|
+
url: 'https://auth.wu76.cn/Baby',
|
|
3507
|
+
staffnum: 195,
|
|
3508
|
+
regcapital: 39.701,
|
|
3509
|
+
paidcapital: 207.4876,
|
|
3510
|
+
insuranceratio: 94.68,
|
|
3511
|
+
isenable: true,
|
|
3512
|
+
status_singleselect: '7',
|
|
3513
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3027', 'I3032', 'L2095', 'M2070', 'P1029'],
|
|
3514
|
+
status_radio: '8',
|
|
3515
|
+
range_check: ['I3006', 'I3034', 'L2032', 'L2095'],
|
|
3516
|
+
establishdate: '2021-05-01T13:11:18.000Z',
|
|
3517
|
+
},
|
|
3518
|
+
{
|
|
3519
|
+
createdAt: '2023-06-12T05:43:49.000Z',
|
|
3520
|
+
updatedAt: '2023-07-17T08:15:07.000Z',
|
|
3521
|
+
createdById: 6,
|
|
3522
|
+
updatedById: 5,
|
|
3523
|
+
testdataid: 40,
|
|
3524
|
+
orgcode: '230040',
|
|
3525
|
+
orgname: 'Johnny LLC',
|
|
3526
|
+
address: '788 Shennan Ave, Futian District',
|
|
3527
|
+
phone: '755-593-2881',
|
|
3528
|
+
email: 'hjo@mail.com',
|
|
3529
|
+
url: null,
|
|
3530
|
+
staffnum: 137,
|
|
3531
|
+
regcapital: 24.5385,
|
|
3532
|
+
paidcapital: 250.5823,
|
|
3533
|
+
insuranceratio: 52.25,
|
|
3534
|
+
isenable: true,
|
|
3535
|
+
status_singleselect: '2',
|
|
3536
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3011', 'I3014', 'I3032', 'L2032', 'L2095', 'M2070'],
|
|
3537
|
+
status_radio: '4',
|
|
3538
|
+
range_check: ['I3007', 'I3010', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
3539
|
+
establishdate: '2023-11-17T21:46:14.000Z',
|
|
3540
|
+
},
|
|
3541
|
+
{
|
|
3542
|
+
createdAt: '2023-06-15T06:41:01.000Z',
|
|
3543
|
+
updatedAt: '2023-06-17T00:51:49.000Z',
|
|
3544
|
+
createdById: 8,
|
|
3545
|
+
updatedById: 5,
|
|
3546
|
+
testdataid: 42,
|
|
3547
|
+
orgcode: '630042',
|
|
3548
|
+
orgname: 'Griffin Brothers Logistic Inc.',
|
|
3549
|
+
address: '197 Grape Street',
|
|
3550
|
+
phone: '213-126-7992',
|
|
3551
|
+
email: 'zitaowan1971@outlook.com',
|
|
3552
|
+
url: 'https://image.parkerdiane.net/Others',
|
|
3553
|
+
staffnum: 26,
|
|
3554
|
+
regcapital: 251.177,
|
|
3555
|
+
paidcapital: 292.6008,
|
|
3556
|
+
insuranceratio: 79.99,
|
|
3557
|
+
isenable: true,
|
|
3558
|
+
status_singleselect: '6',
|
|
3559
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3011', 'I3034', 'L2032', 'L2095', 'O3010', 'P1029'],
|
|
3560
|
+
status_radio: '1',
|
|
3561
|
+
range_check: ['F3134', 'I3011', 'I3012', 'I3027', 'I3032', 'P1029'],
|
|
3562
|
+
establishdate: '2022-10-06T20:13:52.000Z',
|
|
3563
|
+
},
|
|
3564
|
+
{
|
|
3565
|
+
createdAt: '2023-03-04T18:03:54.000Z',
|
|
3566
|
+
updatedAt: '2023-08-07T00:59:00.000Z',
|
|
3567
|
+
createdById: 5,
|
|
3568
|
+
updatedById: 1,
|
|
3569
|
+
testdataid: 52,
|
|
3570
|
+
orgcode: '650052',
|
|
3571
|
+
orgname: '杜工程有限责任公司',
|
|
3572
|
+
address: '924 Wooster Street',
|
|
3573
|
+
phone: '212-656-1851',
|
|
3574
|
+
email: 'sakamoto303@icloud.com',
|
|
3575
|
+
url: 'http://drive.waiman1946.biz/ClothingShoesandJewelry',
|
|
3576
|
+
staffnum: 149,
|
|
3577
|
+
regcapital: 85.2739,
|
|
3578
|
+
paidcapital: 47.86,
|
|
3579
|
+
insuranceratio: 5.24,
|
|
3580
|
+
isenable: true,
|
|
3581
|
+
status_singleselect: '1',
|
|
3582
|
+
range_multipleselect: ['I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070', 'P1029'],
|
|
3583
|
+
status_radio: '8',
|
|
3584
|
+
range_check: ['I3007', 'I3010', 'I3012', 'I3027', 'I3032', 'I3034', 'L2032', 'L2095', 'M2070'],
|
|
3585
|
+
establishdate: '2021-04-22T06:26:45.000Z',
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
createdAt: '2023-04-01T16:13:17.000Z',
|
|
3589
|
+
updatedAt: '2023-05-22T09:24:17.000Z',
|
|
3590
|
+
createdById: 8,
|
|
3591
|
+
updatedById: 10,
|
|
3592
|
+
testdataid: 6,
|
|
3593
|
+
orgcode: '630006',
|
|
3594
|
+
orgname: 'Jacob Telecommunication LLC',
|
|
3595
|
+
address: '东泰五街968号',
|
|
3596
|
+
phone: '769-163-0302',
|
|
3597
|
+
email: 'ikiw@gmail.com',
|
|
3598
|
+
url: 'http://www.wmsiu.cn/ClothingShoesandJewelry',
|
|
3599
|
+
staffnum: 129,
|
|
3600
|
+
regcapital: 28.8318,
|
|
3601
|
+
paidcapital: 17.9883,
|
|
3602
|
+
insuranceratio: 87.39,
|
|
3603
|
+
isenable: true,
|
|
3604
|
+
status_singleselect: '1',
|
|
3605
|
+
range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3032', 'L2032', 'O3010', 'P1029'],
|
|
3606
|
+
status_radio: '3',
|
|
3607
|
+
range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3027', 'I3032', 'L2095', 'M2070'],
|
|
3608
|
+
establishdate: '2023-04-11T23:07:14.000Z',
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
createdAt: '2023-03-15T15:19:15.000Z',
|
|
3612
|
+
updatedAt: '2023-07-10T02:25:11.742Z',
|
|
3613
|
+
createdById: 8,
|
|
3614
|
+
updatedById: null,
|
|
3615
|
+
testdataid: 83,
|
|
3616
|
+
orgcode: '440083',
|
|
3617
|
+
orgname: 'Linda Software LLC',
|
|
3618
|
+
address: '福田区景田东一街36号',
|
|
3619
|
+
phone: '193-8669-1290',
|
|
3620
|
+
email: 'mio10@outlook.com',
|
|
3621
|
+
url: 'https://video.joe306.org/Handcrafts',
|
|
3622
|
+
staffnum: 123,
|
|
3623
|
+
regcapital: 127.33,
|
|
3624
|
+
paidcapital: 209.9907,
|
|
3625
|
+
insuranceratio: 96.56,
|
|
3626
|
+
isenable: true,
|
|
3627
|
+
status_singleselect: '2',
|
|
3628
|
+
range_multipleselect: ['I3006', 'I3012', 'I3027', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
3629
|
+
status_radio: '3',
|
|
3630
|
+
range_check: [
|
|
3631
|
+
'F3134',
|
|
3632
|
+
'I3006',
|
|
3633
|
+
'I3007',
|
|
3634
|
+
'I3008',
|
|
3635
|
+
'I3011',
|
|
3636
|
+
'I3012',
|
|
3637
|
+
'I3027',
|
|
3638
|
+
'I3032',
|
|
3639
|
+
'I3034',
|
|
3640
|
+
'L2095',
|
|
3641
|
+
'M2070',
|
|
3642
|
+
'O3010',
|
|
3643
|
+
],
|
|
3644
|
+
establishdate: '2021-10-24T08:00:26.000Z',
|
|
3645
|
+
},
|
|
3646
|
+
{
|
|
3647
|
+
createdAt: '2023-08-08T08:50:58.000Z',
|
|
3648
|
+
updatedAt: '2023-07-30T08:37:12.000Z',
|
|
3649
|
+
createdById: 1,
|
|
3650
|
+
updatedById: 4,
|
|
3651
|
+
testdataid: 64,
|
|
3652
|
+
orgcode: '650064',
|
|
3653
|
+
orgname: '范物业代理有限责任公司',
|
|
3654
|
+
address: '459 Xue Yuan Yi Xiang, Longgang',
|
|
3655
|
+
phone: '755-2232-1934',
|
|
3656
|
+
email: 'leswhite229@outlook.com',
|
|
3657
|
+
url: 'http://auth.nakanaoshi1954.biz/BeautyPersonalCare',
|
|
3658
|
+
staffnum: 167,
|
|
3659
|
+
regcapital: 50.6322,
|
|
3660
|
+
paidcapital: 253.2695,
|
|
3661
|
+
insuranceratio: 74.53,
|
|
3662
|
+
isenable: null,
|
|
3663
|
+
status_singleselect: '4',
|
|
3664
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3008', 'I3010', 'I3012', 'I3027', 'I3034', 'O3010'],
|
|
3665
|
+
status_radio: '5',
|
|
3666
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3032', 'I3034', 'L2032', 'L2095', 'M2070', 'P1029'],
|
|
3667
|
+
establishdate: '2021-09-28T05:02:42.000Z',
|
|
3668
|
+
},
|
|
3669
|
+
{
|
|
3670
|
+
createdAt: '2023-03-13T20:21:27.000Z',
|
|
3671
|
+
updatedAt: '2023-07-10T02:25:11.738Z',
|
|
3672
|
+
createdById: 7,
|
|
3673
|
+
updatedById: null,
|
|
3674
|
+
testdataid: 50,
|
|
3675
|
+
orgcode: '420050',
|
|
3676
|
+
orgname: 'Helen Electronic Inc.',
|
|
3677
|
+
address: '891 028 County Rd, Yanqing District',
|
|
3678
|
+
phone: '10-8030-8564',
|
|
3679
|
+
email: 'linr1955@icloud.com',
|
|
3680
|
+
url: 'http://www.rossanna908.xyz/SportsOutdoor',
|
|
3681
|
+
staffnum: 149,
|
|
3682
|
+
regcapital: 143.496,
|
|
3683
|
+
paidcapital: null,
|
|
3684
|
+
insuranceratio: 40.72,
|
|
3685
|
+
isenable: true,
|
|
3686
|
+
status_singleselect: '5',
|
|
3687
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3011', 'I3027', 'I3032', 'I3034', 'L2032', 'O3010'],
|
|
3688
|
+
status_radio: '5',
|
|
3689
|
+
range_check: ['I3006', 'I3008', 'I3010', 'I3011', 'I3012', 'I3032', 'M2070', 'O3010'],
|
|
3690
|
+
establishdate: '2023-11-27T06:02:42.000Z',
|
|
3691
|
+
},
|
|
3692
|
+
{
|
|
3693
|
+
createdAt: '2023-08-22T10:45:00.000Z',
|
|
3694
|
+
updatedAt: '2023-07-06T22:27:32.000Z',
|
|
3695
|
+
createdById: 5,
|
|
3696
|
+
updatedById: 9,
|
|
3697
|
+
testdataid: 2,
|
|
3698
|
+
orgcode: '120002',
|
|
3699
|
+
orgname: 'Black Technology LLC',
|
|
3700
|
+
address: '71 Pedway',
|
|
3701
|
+
phone: '312-418-7933',
|
|
3702
|
+
email: 'aarimura9@outlook.com',
|
|
3703
|
+
url: 'http://auth.patel03.biz/HealthBabyCare',
|
|
3704
|
+
staffnum: 95,
|
|
3705
|
+
regcapital: 70.7385,
|
|
3706
|
+
paidcapital: 96.6588,
|
|
3707
|
+
insuranceratio: 74.47,
|
|
3708
|
+
isenable: true,
|
|
3709
|
+
status_singleselect: '7',
|
|
3710
|
+
range_multipleselect: [
|
|
3711
|
+
'F3134',
|
|
3712
|
+
'I3006',
|
|
3713
|
+
'I3007',
|
|
3714
|
+
'I3008',
|
|
3715
|
+
'I3010',
|
|
3716
|
+
'I3011',
|
|
3717
|
+
'I3012',
|
|
3718
|
+
'I3014',
|
|
3719
|
+
'I3027',
|
|
3720
|
+
'I3032',
|
|
3721
|
+
'M2070',
|
|
3722
|
+
'O3010',
|
|
3723
|
+
'P1029',
|
|
3724
|
+
],
|
|
3725
|
+
status_radio: '7',
|
|
3726
|
+
range_check: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3032', 'I3034', 'L2095', 'P1029'],
|
|
3727
|
+
establishdate: '2021-02-18T13:44:21.000Z',
|
|
3728
|
+
},
|
|
3729
|
+
{
|
|
3730
|
+
createdAt: '2023-07-24T13:03:58.000Z',
|
|
3731
|
+
updatedAt: '2023-08-15T23:59:06.000Z',
|
|
3732
|
+
createdById: 0,
|
|
3733
|
+
updatedById: 10,
|
|
3734
|
+
testdataid: 76,
|
|
3735
|
+
orgcode: '340076',
|
|
3736
|
+
orgname: 'Jeff Inc.',
|
|
3737
|
+
address: '珊瑚路357号',
|
|
3738
|
+
phone: '769-5438-3615',
|
|
3739
|
+
email: 'ikk53@gmail.com',
|
|
3740
|
+
url: 'http://www.chimingyeung.info/CellPhonesAccessories',
|
|
3741
|
+
staffnum: 127,
|
|
3742
|
+
regcapital: 12.9611,
|
|
3743
|
+
paidcapital: 177.9844,
|
|
3744
|
+
insuranceratio: 98.28,
|
|
3745
|
+
isenable: true,
|
|
3746
|
+
status_singleselect: '2',
|
|
3747
|
+
range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3027', 'L2032', 'L2095', 'O3010', 'P1029'],
|
|
3748
|
+
status_radio: '4',
|
|
3749
|
+
range_check: [
|
|
3750
|
+
'I3006',
|
|
3751
|
+
'I3007',
|
|
3752
|
+
'I3008',
|
|
3753
|
+
'I3011',
|
|
3754
|
+
'I3012',
|
|
3755
|
+
'I3027',
|
|
3756
|
+
'I3032',
|
|
3757
|
+
'I3034',
|
|
3758
|
+
'L2032',
|
|
3759
|
+
'L2095',
|
|
3760
|
+
'O3010',
|
|
3761
|
+
'P1029',
|
|
3762
|
+
],
|
|
3763
|
+
establishdate: '2021-02-20T10:36:54.000Z',
|
|
3764
|
+
},
|
|
3765
|
+
{
|
|
3766
|
+
createdAt: '2023-06-01T02:52:18.000Z',
|
|
3767
|
+
updatedAt: '2023-07-05T07:00:07.000Z',
|
|
3768
|
+
createdById: 0,
|
|
3769
|
+
updatedById: 10,
|
|
3770
|
+
testdataid: 16,
|
|
3771
|
+
orgcode: '410016',
|
|
3772
|
+
orgname: '卢系统有限责任公司',
|
|
3773
|
+
address: '670 Figueroa Street',
|
|
3774
|
+
phone: '213-571-5321',
|
|
3775
|
+
email: 'shiry@gmail.com',
|
|
3776
|
+
url: 'https://video.yishihan64.xyz/Food',
|
|
3777
|
+
staffnum: 63,
|
|
3778
|
+
regcapital: 127.0708,
|
|
3779
|
+
paidcapital: 25.9392,
|
|
3780
|
+
insuranceratio: 89.87,
|
|
3781
|
+
isenable: null,
|
|
3782
|
+
status_singleselect: '5',
|
|
3783
|
+
range_multipleselect: ['I3006', 'I3008', 'I3010', 'I3011', 'I3027', 'I3032', 'L2095'],
|
|
3784
|
+
status_radio: '3',
|
|
3785
|
+
range_check: ['I3008', 'I3014', 'I3032', 'L2095', 'P1029'],
|
|
3786
|
+
establishdate: '2022-03-30T15:28:56.000Z',
|
|
3787
|
+
},
|
|
3788
|
+
{
|
|
3789
|
+
createdAt: '2023-08-09T02:19:55.000Z',
|
|
3790
|
+
updatedAt: '2023-07-10T02:25:11.730Z',
|
|
3791
|
+
createdById: null,
|
|
3792
|
+
updatedById: 3,
|
|
3793
|
+
testdataid: 98,
|
|
3794
|
+
orgcode: '350098',
|
|
3795
|
+
orgname: 'King Brothers Telecommunication Inc.',
|
|
3796
|
+
address: '582 Diplomacy Drive',
|
|
3797
|
+
phone: '614-785-5349',
|
|
3798
|
+
email: 'lindadams922@gmail.com',
|
|
3799
|
+
url: 'https://www.luwu.biz/ToolsHomeDecoration',
|
|
3800
|
+
staffnum: 146,
|
|
3801
|
+
regcapital: 237.6197,
|
|
3802
|
+
paidcapital: 295.3728,
|
|
3803
|
+
insuranceratio: 92,
|
|
3804
|
+
isenable: true,
|
|
3805
|
+
status_singleselect: '7',
|
|
3806
|
+
range_multipleselect: ['I3007', 'I3014', 'I3027', 'L2095', 'O3010'],
|
|
3807
|
+
status_radio: '7',
|
|
3808
|
+
range_check: ['I3006', 'I3008', 'I3010', 'I3012', 'I3027', 'L2095', 'O3010', 'P1029'],
|
|
3809
|
+
establishdate: '2022-09-04T04:56:52.000Z',
|
|
3810
|
+
},
|
|
3811
|
+
{
|
|
3812
|
+
createdAt: '2023-03-03T14:11:21.000Z',
|
|
3813
|
+
updatedAt: '2023-06-10T07:54:44.000Z',
|
|
3814
|
+
createdById: 10,
|
|
3815
|
+
updatedById: 8,
|
|
3816
|
+
testdataid: 82,
|
|
3817
|
+
orgcode: '650082',
|
|
3818
|
+
orgname: '子韬食品有限责任公司',
|
|
3819
|
+
address: '889 Alameda Street',
|
|
3820
|
+
phone: '213-000-0993',
|
|
3821
|
+
email: 'goto1004@icloud.com',
|
|
3822
|
+
url: 'https://drive.kucy84.org/FilmSupplies',
|
|
3823
|
+
staffnum: 164,
|
|
3824
|
+
regcapital: null,
|
|
3825
|
+
paidcapital: 75.458,
|
|
3826
|
+
insuranceratio: 56.84,
|
|
3827
|
+
isenable: true,
|
|
3828
|
+
status_singleselect: '5',
|
|
3829
|
+
range_multipleselect: ['I3006', 'I3007', 'I3012', 'I3014', 'I3027', 'I3034', 'L2095', 'M2070', 'P1029'],
|
|
3830
|
+
status_radio: '1',
|
|
3831
|
+
range_check: ['F3134', 'I3010', 'I3012', 'I3014', 'I3027', 'I3032', 'L2032', 'L2095'],
|
|
3832
|
+
establishdate: null,
|
|
3833
|
+
},
|
|
3834
|
+
{
|
|
3835
|
+
createdAt: '2023-05-04T12:45:29.000Z',
|
|
3836
|
+
updatedAt: '2023-05-29T15:14:39.000Z',
|
|
3837
|
+
createdById: 4,
|
|
3838
|
+
updatedById: 4,
|
|
3839
|
+
testdataid: 32,
|
|
3840
|
+
orgcode: '210032',
|
|
3841
|
+
orgname: '杰宏贸易有限责任公司',
|
|
3842
|
+
address: '695 Fifth Avenue',
|
|
3843
|
+
phone: '212-301-3048',
|
|
3844
|
+
email: 'tianrui6@mail.com',
|
|
3845
|
+
url: 'https://video.fat12.us/AppsGames',
|
|
3846
|
+
staffnum: 196,
|
|
3847
|
+
regcapital: 253.0279,
|
|
3848
|
+
paidcapital: 201.5416,
|
|
3849
|
+
insuranceratio: 26.71,
|
|
3850
|
+
isenable: true,
|
|
3851
|
+
status_singleselect: '7',
|
|
3852
|
+
range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3014', 'I3032', 'I3034', 'M2070'],
|
|
3853
|
+
status_radio: '7',
|
|
3854
|
+
range_check: [
|
|
3855
|
+
'I3006',
|
|
3856
|
+
'I3007',
|
|
3857
|
+
'I3008',
|
|
3858
|
+
'I3010',
|
|
3859
|
+
'I3011',
|
|
3860
|
+
'I3012',
|
|
3861
|
+
'I3032',
|
|
3862
|
+
'I3034',
|
|
3863
|
+
'L2032',
|
|
3864
|
+
'L2095',
|
|
3865
|
+
'O3010',
|
|
3866
|
+
'P1029',
|
|
3867
|
+
],
|
|
3868
|
+
establishdate: '2022-11-10T12:49:21.000Z',
|
|
3869
|
+
},
|
|
3870
|
+
{
|
|
3871
|
+
createdAt: '2023-06-20T22:11:44.000Z',
|
|
3872
|
+
updatedAt: '2023-07-01T22:29:47.000Z',
|
|
3873
|
+
createdById: 0,
|
|
3874
|
+
updatedById: 6,
|
|
3875
|
+
testdataid: 88,
|
|
3876
|
+
orgcode: '550088',
|
|
3877
|
+
orgname: 'Thomas Engineering LLC',
|
|
3878
|
+
address: 'No.24, Dongsan Road, Erxianqiao, Chenghua District',
|
|
3879
|
+
phone: '178-8435-2008',
|
|
3880
|
+
email: 'rachelj5@icloud.com',
|
|
3881
|
+
url: 'http://www.dulan.us/VideoGames',
|
|
3882
|
+
staffnum: 49,
|
|
3883
|
+
regcapital: 57.0454,
|
|
3884
|
+
paidcapital: 79.007,
|
|
3885
|
+
insuranceratio: 84.03,
|
|
3886
|
+
isenable: null,
|
|
3887
|
+
status_singleselect: '7',
|
|
3888
|
+
range_multipleselect: ['I3007', 'I3010', 'I3011', 'I3032', 'I3034', 'L2095', 'M2070', 'O3010'],
|
|
3889
|
+
status_radio: '1',
|
|
3890
|
+
range_check: ['I3007', 'I3012', 'I3027', 'I3034', 'L2095'],
|
|
3891
|
+
establishdate: '2022-02-23T22:58:42.000Z',
|
|
3892
|
+
},
|
|
3893
|
+
{
|
|
3894
|
+
createdAt: '2023-03-28T22:03:18.000Z',
|
|
3895
|
+
updatedAt: '2023-06-03T12:48:50.000Z',
|
|
3896
|
+
createdById: 4,
|
|
3897
|
+
updatedById: 8,
|
|
3898
|
+
testdataid: 3,
|
|
3899
|
+
orgcode: '430003',
|
|
3900
|
+
orgname: '彭記电子有限责任公司',
|
|
3901
|
+
address: '白云区小坪东路412号',
|
|
3902
|
+
phone: '155-6842-3057',
|
|
3903
|
+
email: 'ctingfung@mail.com',
|
|
3904
|
+
url: 'http://image.yan2007.org/FilmSupplies',
|
|
3905
|
+
staffnum: 158,
|
|
3906
|
+
regcapital: 15.9472,
|
|
3907
|
+
paidcapital: 73.3624,
|
|
3908
|
+
insuranceratio: 67.76,
|
|
3909
|
+
isenable: true,
|
|
3910
|
+
status_singleselect: '6',
|
|
3911
|
+
range_multipleselect: ['F3134', 'I3010', 'I3011', 'I3012', 'I3027'],
|
|
3912
|
+
status_radio: '5',
|
|
3913
|
+
range_check: ['I3006', 'I3007', 'I3008', 'I3012', 'I3027', 'M2070', 'O3010', 'P1029'],
|
|
3914
|
+
establishdate: '2023-02-18T04:02:21.000Z',
|
|
3915
|
+
},
|
|
3916
|
+
{
|
|
3917
|
+
createdAt: '2023-06-15T07:46:48.000Z',
|
|
3918
|
+
updatedAt: '2023-05-01T19:53:39.000Z',
|
|
3919
|
+
createdById: 6,
|
|
3920
|
+
updatedById: 3,
|
|
3921
|
+
testdataid: 92,
|
|
3922
|
+
orgcode: '510092',
|
|
3923
|
+
orgname: '邱記贸易有限责任公司',
|
|
3924
|
+
address: '930 Rush Street',
|
|
3925
|
+
phone: '312-781-8750',
|
|
3926
|
+
email: 'xiujia1961@mail.com',
|
|
3927
|
+
url: 'http://image.lamwingfat.us/ComputersElectronics',
|
|
3928
|
+
staffnum: 76,
|
|
3929
|
+
regcapital: null,
|
|
3930
|
+
paidcapital: 282.6866,
|
|
3931
|
+
insuranceratio: 76.86,
|
|
3932
|
+
isenable: true,
|
|
3933
|
+
status_singleselect: '7',
|
|
3934
|
+
range_multipleselect: ['I3006', 'I3007', 'I3011', 'I3027', 'L2032', 'P1029'],
|
|
3935
|
+
status_radio: '7',
|
|
3936
|
+
range_check: ['F3134', 'I3010', 'I3014', 'I3032', 'L2095', 'P1029'],
|
|
3937
|
+
establishdate: '2023-11-18T06:44:55.000Z',
|
|
3938
|
+
},
|
|
3939
|
+
{
|
|
3940
|
+
createdAt: '2023-06-09T17:49:18.000Z',
|
|
3941
|
+
updatedAt: '2023-07-10T02:25:11.735Z',
|
|
3942
|
+
createdById: null,
|
|
3943
|
+
updatedById: null,
|
|
3944
|
+
testdataid: 68,
|
|
3945
|
+
orgcode: '450068',
|
|
3946
|
+
orgname: '汪記有限责任公司',
|
|
3947
|
+
address: '坑美十五巷585号',
|
|
3948
|
+
phone: '769-680-4019',
|
|
3949
|
+
email: null,
|
|
3950
|
+
url: 'https://video.lok2000.org/IndustrialScientificSupplies',
|
|
3951
|
+
staffnum: 139,
|
|
3952
|
+
regcapital: 90.9114,
|
|
3953
|
+
paidcapital: 284.0137,
|
|
3954
|
+
insuranceratio: 21.71,
|
|
3955
|
+
isenable: true,
|
|
3956
|
+
status_singleselect: '7',
|
|
3957
|
+
range_multipleselect: ['I3006', 'I3010', 'I3012', 'I3027', 'I3032', 'L2095', 'O3010'],
|
|
3958
|
+
status_radio: '7',
|
|
3959
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'L2095'],
|
|
3960
|
+
establishdate: '2021-11-03T10:14:09.000Z',
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
createdAt: '2023-06-16T05:04:59.000Z',
|
|
3964
|
+
updatedAt: '2023-06-16T07:08:56.000Z',
|
|
3965
|
+
createdById: 6,
|
|
3966
|
+
updatedById: 9,
|
|
3967
|
+
testdataid: 54,
|
|
3968
|
+
orgcode: '310054',
|
|
3969
|
+
orgname: "Martinez's Logistic LLC",
|
|
3970
|
+
address: '476 Yueliu Rd, Fangshan District',
|
|
3971
|
+
phone: '10-971-0570',
|
|
3972
|
+
email: 'yogoto@hotmail.com',
|
|
3973
|
+
url: 'https://www.kimuram2.co.jp/CDsVinyl',
|
|
3974
|
+
staffnum: 132,
|
|
3975
|
+
regcapital: 80.6528,
|
|
3976
|
+
paidcapital: 87.4258,
|
|
3977
|
+
insuranceratio: 87.58,
|
|
3978
|
+
isenable: true,
|
|
3979
|
+
status_singleselect: '7',
|
|
3980
|
+
range_multipleselect: ['I3006', 'I3010', 'I3011', 'I3032', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
3981
|
+
status_radio: '3',
|
|
3982
|
+
range_check: ['I3006', 'I3007', 'I3008', 'I3012', 'I3032', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
3983
|
+
establishdate: '2021-08-11T08:08:33.000Z',
|
|
3984
|
+
},
|
|
3985
|
+
{
|
|
3986
|
+
createdAt: '2023-07-17T20:41:03.000Z',
|
|
3987
|
+
updatedAt: '2023-06-24T05:16:44.000Z',
|
|
3988
|
+
createdById: 5,
|
|
3989
|
+
updatedById: 9,
|
|
3990
|
+
testdataid: 93,
|
|
3991
|
+
orgcode: '350093',
|
|
3992
|
+
orgname: '安琪有限责任公司',
|
|
3993
|
+
address: '712 Huaxia St, Jinghua Shangquan',
|
|
3994
|
+
phone: '138-0406-7670',
|
|
3995
|
+
email: 'zhennanm@yahoo.com',
|
|
3996
|
+
url: 'http://drive.akinamori803.cn/Food',
|
|
3997
|
+
staffnum: 186,
|
|
3998
|
+
regcapital: 37.836,
|
|
3999
|
+
paidcapital: 53.0391,
|
|
4000
|
+
insuranceratio: 74.62,
|
|
4001
|
+
isenable: true,
|
|
4002
|
+
status_singleselect: '2',
|
|
4003
|
+
range_multipleselect: ['I3006', 'I3012', 'I3014', 'I3027', 'O3010'],
|
|
4004
|
+
status_radio: '2',
|
|
4005
|
+
range_check: ['I3007', 'I3010', 'I3011', 'I3012', 'I3034', 'M2070', 'O3010'],
|
|
4006
|
+
establishdate: '2023-06-28T09:10:55.000Z',
|
|
4007
|
+
},
|
|
4008
|
+
{
|
|
4009
|
+
createdAt: '2023-05-11T11:07:26.000Z',
|
|
4010
|
+
updatedAt: '2023-06-20T19:16:26.000Z',
|
|
4011
|
+
createdById: 9,
|
|
4012
|
+
updatedById: 9,
|
|
4013
|
+
testdataid: 13,
|
|
4014
|
+
orgcode: '310013',
|
|
4015
|
+
orgname: 'Evans Brothers LLC',
|
|
4016
|
+
address: '黄浦区淮海中路683号',
|
|
4017
|
+
phone: '164-7632-7777',
|
|
4018
|
+
email: 'aokon@gmail.com',
|
|
4019
|
+
url: 'http://image.shawm9.us/CellPhonesAccessories',
|
|
4020
|
+
staffnum: 97,
|
|
4021
|
+
regcapital: 182.859,
|
|
4022
|
+
paidcapital: 105.8903,
|
|
4023
|
+
insuranceratio: 63.85,
|
|
4024
|
+
isenable: true,
|
|
4025
|
+
status_singleselect: '3',
|
|
4026
|
+
range_multipleselect: ['F3134', 'I3006', 'I3008', 'I3012', 'I3014', 'L2032', 'O3010'],
|
|
4027
|
+
status_radio: '5',
|
|
4028
|
+
range_check: ['I3008', 'I3010', 'I3012', 'L2095'],
|
|
4029
|
+
establishdate: '2021-09-05T13:35:37.000Z',
|
|
4030
|
+
},
|
|
4031
|
+
{
|
|
4032
|
+
createdAt: '2023-03-10T11:27:35.000Z',
|
|
4033
|
+
updatedAt: '2023-06-28T11:16:47.000Z',
|
|
4034
|
+
createdById: 6,
|
|
4035
|
+
updatedById: 4,
|
|
4036
|
+
testdataid: 91,
|
|
4037
|
+
orgcode: '240091',
|
|
4038
|
+
orgname: '郑顾问有限责任公司',
|
|
4039
|
+
address: '872 Canal Street',
|
|
4040
|
+
phone: '212-005-7205',
|
|
4041
|
+
email: 'rink4@mail.com',
|
|
4042
|
+
url: 'https://image.jimenezt7.jp/Others',
|
|
4043
|
+
staffnum: 167,
|
|
4044
|
+
regcapital: 288.5176,
|
|
4045
|
+
paidcapital: 33.3404,
|
|
4046
|
+
insuranceratio: 55.87,
|
|
4047
|
+
isenable: true,
|
|
4048
|
+
status_singleselect: '3',
|
|
4049
|
+
range_multipleselect: ['I3011', 'I3027', 'I3034', 'L2032'],
|
|
4050
|
+
status_radio: '8',
|
|
4051
|
+
range_check: ['I3008', 'I3011', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010'],
|
|
4052
|
+
establishdate: null,
|
|
4053
|
+
},
|
|
4054
|
+
{
|
|
4055
|
+
createdAt: '2023-08-11T17:06:24.000Z',
|
|
4056
|
+
updatedAt: '2023-06-24T22:14:32.000Z',
|
|
4057
|
+
createdById: 3,
|
|
4058
|
+
updatedById: 7,
|
|
4059
|
+
testdataid: 17,
|
|
4060
|
+
orgcode: '620017',
|
|
4061
|
+
orgname: 'Patrick Technology LLC',
|
|
4062
|
+
address: '505 Ridgewood Road',
|
|
4063
|
+
phone: '330-035-6552',
|
|
4064
|
+
email: 'nommis58@icloud.com',
|
|
4065
|
+
url: 'http://auth.suitsuki304.net/Handcrafts',
|
|
4066
|
+
staffnum: 196,
|
|
4067
|
+
regcapital: 163.7404,
|
|
4068
|
+
paidcapital: 14.0622,
|
|
4069
|
+
insuranceratio: 25.51,
|
|
4070
|
+
isenable: null,
|
|
4071
|
+
status_singleselect: '3',
|
|
4072
|
+
range_multipleselect: null,
|
|
4073
|
+
status_radio: '2',
|
|
4074
|
+
range_check: ['F3134', 'I3006', 'I3011', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'M2070', 'O3010', 'P1029'],
|
|
4075
|
+
establishdate: '2022-08-06T12:16:45.000Z',
|
|
4076
|
+
},
|
|
4077
|
+
{
|
|
4078
|
+
createdAt: '2023-03-09T02:32:46.000Z',
|
|
4079
|
+
updatedAt: '2023-07-02T05:29:43.000Z',
|
|
4080
|
+
createdById: 3,
|
|
4081
|
+
updatedById: 6,
|
|
4082
|
+
testdataid: 46,
|
|
4083
|
+
orgcode: '220046',
|
|
4084
|
+
orgname: "Schmidt's Inc.",
|
|
4085
|
+
address: '503 2nd Zhongshan Road, Yuexiu District',
|
|
4086
|
+
phone: '20-272-7867',
|
|
4087
|
+
email: 'ylla@outlook.com',
|
|
4088
|
+
url: 'https://www.seikokudo.cn/Books',
|
|
4089
|
+
staffnum: 131,
|
|
4090
|
+
regcapital: 259.642,
|
|
4091
|
+
paidcapital: 172.6541,
|
|
4092
|
+
insuranceratio: 38.83,
|
|
4093
|
+
isenable: true,
|
|
4094
|
+
status_singleselect: '3',
|
|
4095
|
+
range_multipleselect: ['I3006', 'I3007', 'I3010', 'I3012', 'I3027', 'I3034', 'L2095', 'M2070', 'P1029'],
|
|
4096
|
+
status_radio: '7',
|
|
4097
|
+
range_check: ['I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'M2070'],
|
|
4098
|
+
establishdate: '2023-06-16T08:57:56.000Z',
|
|
4099
|
+
},
|
|
4100
|
+
{
|
|
4101
|
+
createdAt: '2023-04-02T02:35:24.000Z',
|
|
4102
|
+
updatedAt: '2023-07-22T21:27:03.000Z',
|
|
4103
|
+
createdById: 7,
|
|
4104
|
+
updatedById: 5,
|
|
4105
|
+
testdataid: 48,
|
|
4106
|
+
orgcode: '530048',
|
|
4107
|
+
orgname: "Long's LLC",
|
|
4108
|
+
address: '成华区双庆路872号',
|
|
4109
|
+
phone: '28-2897-5944',
|
|
4110
|
+
email: 'koonwy@outlook.com',
|
|
4111
|
+
url: 'https://auth.zj2017.org/Beauty',
|
|
4112
|
+
staffnum: 22,
|
|
4113
|
+
regcapital: 81.2412,
|
|
4114
|
+
paidcapital: 89.2826,
|
|
4115
|
+
insuranceratio: 22.58,
|
|
4116
|
+
isenable: true,
|
|
4117
|
+
status_singleselect: '8',
|
|
4118
|
+
range_multipleselect: ['I3008', 'I3011', 'I3012', 'I3034', 'L2032'],
|
|
4119
|
+
status_radio: '1',
|
|
4120
|
+
range_check: ['F3134', 'I3006', 'I3008', 'I3011', 'I3012', 'I3034', 'L2032', 'M2070', 'O3010'],
|
|
4121
|
+
establishdate: '2023-08-06T15:31:45.000Z',
|
|
4122
|
+
},
|
|
4123
|
+
{
|
|
4124
|
+
createdAt: '2023-08-06T02:38:26.000Z',
|
|
4125
|
+
updatedAt: '2023-07-01T01:03:02.000Z',
|
|
4126
|
+
createdById: 4,
|
|
4127
|
+
updatedById: 6,
|
|
4128
|
+
testdataid: 99,
|
|
4129
|
+
orgcode: '310099',
|
|
4130
|
+
orgname: 'Jamie Consultants LLC',
|
|
4131
|
+
address: '罗湖区清水河一路156号',
|
|
4132
|
+
phone: '755-7525-5040',
|
|
4133
|
+
email: 'ikki922@icloud.com',
|
|
4134
|
+
url: 'http://video.haki.info/ArtsHandicraftsSewing',
|
|
4135
|
+
staffnum: 140,
|
|
4136
|
+
regcapital: null,
|
|
4137
|
+
paidcapital: 234.484,
|
|
4138
|
+
insuranceratio: 55.76,
|
|
4139
|
+
isenable: null,
|
|
4140
|
+
status_singleselect: '1',
|
|
4141
|
+
range_multipleselect: ['F3134', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'M2070', 'O3010'],
|
|
4142
|
+
status_radio: '1',
|
|
4143
|
+
range_check: [
|
|
4144
|
+
'I3007',
|
|
4145
|
+
'I3010',
|
|
4146
|
+
'I3011',
|
|
4147
|
+
'I3014',
|
|
4148
|
+
'I3027',
|
|
4149
|
+
'I3032',
|
|
4150
|
+
'I3034',
|
|
4151
|
+
'L2032',
|
|
4152
|
+
'L2095',
|
|
4153
|
+
'M2070',
|
|
4154
|
+
'O3010',
|
|
4155
|
+
'P1029',
|
|
4156
|
+
],
|
|
4157
|
+
establishdate: '2022-10-17T10:43:37.000Z',
|
|
4158
|
+
},
|
|
4159
|
+
{
|
|
4160
|
+
createdAt: '2023-06-12T16:34:38.000Z',
|
|
4161
|
+
updatedAt: '2023-08-03T11:31:10.000Z',
|
|
4162
|
+
createdById: 8,
|
|
4163
|
+
updatedById: 4,
|
|
4164
|
+
testdataid: 22,
|
|
4165
|
+
orgcode: '120022',
|
|
4166
|
+
orgname: '子韬有限责任公司',
|
|
4167
|
+
address: '442 Tangyuan Street 5th Alley, Airport Road, Baiyun',
|
|
4168
|
+
phone: '168-8185-4258',
|
|
4169
|
+
email: 'anqihu5@gmail.com',
|
|
4170
|
+
url: 'http://auth.ontang10.xyz/CDsVinyl',
|
|
4171
|
+
staffnum: 150,
|
|
4172
|
+
regcapital: 191.8842,
|
|
4173
|
+
paidcapital: 282.3322,
|
|
4174
|
+
insuranceratio: 37.26,
|
|
4175
|
+
isenable: true,
|
|
4176
|
+
status_singleselect: '5',
|
|
4177
|
+
range_multipleselect: ['F3134', 'I3007', 'I3014', 'I3034', 'M2070', 'P1029'],
|
|
4178
|
+
status_radio: '8',
|
|
4179
|
+
range_check: [
|
|
4180
|
+
'I3006',
|
|
4181
|
+
'I3007',
|
|
4182
|
+
'I3008',
|
|
4183
|
+
'I3010',
|
|
4184
|
+
'I3011',
|
|
4185
|
+
'I3012',
|
|
4186
|
+
'I3014',
|
|
4187
|
+
'I3027',
|
|
4188
|
+
'I3032',
|
|
4189
|
+
'L2032',
|
|
4190
|
+
'L2095',
|
|
4191
|
+
'M2070',
|
|
4192
|
+
'O3010',
|
|
4193
|
+
'P1029',
|
|
4194
|
+
],
|
|
4195
|
+
establishdate: '2022-05-31T12:34:11.000Z',
|
|
4196
|
+
},
|
|
4197
|
+
{
|
|
4198
|
+
createdAt: '2023-04-26T08:00:47.000Z',
|
|
4199
|
+
updatedAt: '2023-06-26T22:25:14.000Z',
|
|
4200
|
+
createdById: 7,
|
|
4201
|
+
updatedById: 7,
|
|
4202
|
+
testdataid: 97,
|
|
4203
|
+
orgcode: '120097',
|
|
4204
|
+
orgname: '嘉伦有限责任公司',
|
|
4205
|
+
address: '天河区大信商圈大信南路342号',
|
|
4206
|
+
phone: '165-5165-2865',
|
|
4207
|
+
email: 'gonzalez1221@gmail.com',
|
|
4208
|
+
url: 'https://auth.kwansw901.biz/HouseholdKitchenAppliances',
|
|
4209
|
+
staffnum: 34,
|
|
4210
|
+
regcapital: 38.0234,
|
|
4211
|
+
paidcapital: 180.0297,
|
|
4212
|
+
insuranceratio: 10.93,
|
|
4213
|
+
isenable: true,
|
|
4214
|
+
status_singleselect: '5',
|
|
4215
|
+
range_multipleselect: ['I3008', 'I3010', 'I3011', 'I3014', 'I3034', 'L2095', 'M2070', 'O3010', 'P1029'],
|
|
4216
|
+
status_radio: '6',
|
|
4217
|
+
range_check: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027', 'L2032', 'M2070', 'O3010', 'P1029'],
|
|
4218
|
+
establishdate: null,
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
createdAt: '2023-04-20T07:20:03.000Z',
|
|
4222
|
+
updatedAt: '2023-05-22T03:28:57.000Z',
|
|
4223
|
+
createdById: 7,
|
|
4224
|
+
updatedById: 3,
|
|
4225
|
+
testdataid: 67,
|
|
4226
|
+
orgcode: '240067',
|
|
4227
|
+
orgname: 'Betty Telecommunication Inc.',
|
|
4228
|
+
address: '351 Figueroa Street',
|
|
4229
|
+
phone: '213-187-2091',
|
|
4230
|
+
email: 'marthaferguson6@gmail.com',
|
|
4231
|
+
url: 'https://www.taniguchihina1110.us/SportsOutdoor',
|
|
4232
|
+
staffnum: 58,
|
|
4233
|
+
regcapital: 188.0791,
|
|
4234
|
+
paidcapital: 127.5241,
|
|
4235
|
+
insuranceratio: 36.21,
|
|
4236
|
+
isenable: null,
|
|
4237
|
+
status_singleselect: '5',
|
|
4238
|
+
range_multipleselect: ['I3006', 'I3010', 'I3014', 'I3027', 'L2032', 'O3010'],
|
|
4239
|
+
status_radio: '1',
|
|
4240
|
+
range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3011', 'L2032', 'L2095', 'O3010'],
|
|
4241
|
+
establishdate: '2023-01-11T04:04:18.000Z',
|
|
4242
|
+
},
|
|
4243
|
+
];
|
|
4244
|
+
export default module.exports = {
|
|
4245
|
+
appendJsonCollectionName,
|
|
4246
|
+
builtinGeneral,
|
|
4247
|
+
builtinFile,
|
|
4248
|
+
builtinExpression,
|
|
4249
|
+
generalWithNoRelationalFields,
|
|
4250
|
+
generalWithNoRelationalFieldsData,
|
|
4251
|
+
};
|