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