@ningboyz/apis 1.7.97 → 1.7.98
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/package.json +2 -2
- package/packages/antv/type.ts~ +57 -0
- package/packages/card/index.ts~ +47 -0
- package/packages/card/tzclbsort.ts~ +36 -0
- package/packages/card/zccz.ts~ +106 -0
- package/packages/expd/type.ts~ +17 -0
- package/packages/noti/type.ts~ +29 -0
- package/packages/ssb/socialInsurance.ts +12 -1
- package/packages/ssb/types.ts +12 -4
- package/packages/tabl/main.ts +35 -4
- package/packages/tabl/types.ts +6 -2
- package/packages/tyc/baseInfo.ts +12 -1
- package/packages/tyc/changeInfo.ts +12 -1
- package/packages/tyc/copyReg.ts +12 -1
- package/packages/tyc/copyRegWorks.ts +12 -1
- package/packages/tyc/courtAnnouncement.ts +12 -1
- package/packages/tyc/creditChina.ts +12 -1
- package/packages/tyc/dishonest.ts +12 -1
- package/packages/tyc/equityInfo.ts +12 -1
- package/packages/tyc/findHistoryRongzi.ts +12 -1
- package/packages/tyc/findJingpin.ts +12 -1
- package/packages/tyc/findTeamMember.ts +12 -1
- package/packages/tyc/getPledgeReg.ts +12 -1
- package/packages/tyc/holder.ts +12 -1
- package/packages/tyc/holderHistory.ts +12 -1
- package/packages/tyc/illegalInfo.ts +12 -1
- package/packages/tyc/inverst.ts +12 -1
- package/packages/tyc/investHistory.ts +12 -1
- package/packages/tyc/judicialSale.ts +12 -1
- package/packages/tyc/ktannouncement.ts +12 -1
- package/packages/tyc/lawSuit.ts +12 -1
- package/packages/tyc/mortgageInfo.ts +12 -1
- package/packages/tyc/ownTax.ts +12 -1
- package/packages/tyc/profile.ts +12 -1
- package/packages/tyc/publicNotice.ts +12 -1
- package/packages/tyc/punishmentInfo.ts +12 -1
- package/packages/tyc/staff.ts +12 -1
- package/packages/tyc/types.ts +208 -0
- package/packages/wtui/type.ts~ +380 -0
package/packages/tyc/types.ts
CHANGED
|
@@ -5,6 +5,14 @@ export interface IProfileSelectdbQuerys {
|
|
|
5
5
|
export class TProfileSelectdbQuerys implements IProfileSelectdbQuerys {
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
+
export interface IProfileDetaildbQuerys {
|
|
9
|
+
profileId: number;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export class TProfileDetaildbQuerys implements IProfileDetaildbQuerys {
|
|
13
|
+
profileId: number = -1;
|
|
14
|
+
}
|
|
15
|
+
|
|
8
16
|
export interface IProfileSyncdbQuerys {
|
|
9
17
|
uploader: string;
|
|
10
18
|
}
|
|
@@ -20,6 +28,14 @@ export interface IBaseInfoSelectdbQuerys {
|
|
|
20
28
|
export class TBaseInfoSelectdbQuerys implements IBaseInfoSelectdbQuerys {
|
|
21
29
|
}
|
|
22
30
|
|
|
31
|
+
export interface IBaseInfoDetaildbQuerys {
|
|
32
|
+
baseInfoId: number;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export class TBaseInfoDetaildbQuerys implements IBaseInfoDetaildbQuerys {
|
|
36
|
+
baseInfoId: number = -1;
|
|
37
|
+
}
|
|
38
|
+
|
|
23
39
|
export interface IBaseInfoSyncdbQuerys {
|
|
24
40
|
uploader: string;
|
|
25
41
|
}
|
|
@@ -35,6 +51,14 @@ export interface IStaffSelectdbQuerys {
|
|
|
35
51
|
export class TStaffSelectdbQuerys implements IStaffSelectdbQuerys {
|
|
36
52
|
}
|
|
37
53
|
|
|
54
|
+
export interface IStaffDetaildbQuerys {
|
|
55
|
+
staffId: number;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export class TStaffDetaildbQuerys implements IStaffDetaildbQuerys {
|
|
59
|
+
staffId: number = -1;
|
|
60
|
+
}
|
|
61
|
+
|
|
38
62
|
export interface IStaffSyncdbQuerys {
|
|
39
63
|
uploader: string;
|
|
40
64
|
}
|
|
@@ -50,6 +74,14 @@ export interface IHolderSelectdbQuerys {
|
|
|
50
74
|
export class THolderSelectdbQuerys implements IHolderSelectdbQuerys {
|
|
51
75
|
}
|
|
52
76
|
|
|
77
|
+
export interface IHolderDetaildbQuerys {
|
|
78
|
+
holderId: number;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export class THolderDetaildbQuerys implements IHolderDetaildbQuerys {
|
|
82
|
+
holderId: number = -1;
|
|
83
|
+
}
|
|
84
|
+
|
|
53
85
|
export interface IHolderSyncdbQuerys {
|
|
54
86
|
uploader: string;
|
|
55
87
|
}
|
|
@@ -65,6 +97,14 @@ export interface IInverstSelectdbQuerys {
|
|
|
65
97
|
export class TInverstSelectdbQuerys implements IInverstSelectdbQuerys {
|
|
66
98
|
}
|
|
67
99
|
|
|
100
|
+
export interface IInverstDetaildbQuerys {
|
|
101
|
+
inverstId: number;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export class TInverstDetaildbQuerys implements IInverstDetaildbQuerys {
|
|
105
|
+
inverstId: number = -1;
|
|
106
|
+
}
|
|
107
|
+
|
|
68
108
|
export interface IInverstSyncdbQuerys {
|
|
69
109
|
uploader: string;
|
|
70
110
|
}
|
|
@@ -80,6 +120,14 @@ export interface IChangeInfoSelectdbQuerys {
|
|
|
80
120
|
export class TChangeInfoSelectdbQuerys implements IChangeInfoSelectdbQuerys {
|
|
81
121
|
}
|
|
82
122
|
|
|
123
|
+
export interface IChangeInfoDetaildbQuerys {
|
|
124
|
+
changeInfoId: number;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export class TChangeInfoDetaildbQuerys implements IChangeInfoDetaildbQuerys {
|
|
128
|
+
changeInfoId: number = -1;
|
|
129
|
+
}
|
|
130
|
+
|
|
83
131
|
export interface IChangeInfoSyncdbQuerys {
|
|
84
132
|
uploader: string;
|
|
85
133
|
}
|
|
@@ -95,6 +143,14 @@ export interface IHolderHistorySelectdbQuerys {
|
|
|
95
143
|
export class THolderHistorySelectdbQuerys implements IHolderHistorySelectdbQuerys {
|
|
96
144
|
}
|
|
97
145
|
|
|
146
|
+
export interface IHolderHistoryDetaildbQuerys {
|
|
147
|
+
holderHistoryId: number;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export class THolderHistoryDetaildbQuerys implements IHolderHistoryDetaildbQuerys {
|
|
151
|
+
holderHistoryId: number = -1;
|
|
152
|
+
}
|
|
153
|
+
|
|
98
154
|
export interface IHolderHistorySyncdbQuerys {
|
|
99
155
|
uploader: string;
|
|
100
156
|
}
|
|
@@ -110,6 +166,14 @@ export interface IInvestHistorySelectdbQuerys {
|
|
|
110
166
|
export class TInvestHistorySelectdbQuerys implements IInvestHistorySelectdbQuerys {
|
|
111
167
|
}
|
|
112
168
|
|
|
169
|
+
export interface IInvestHistoryDetaildbQuerys {
|
|
170
|
+
investHistoryId: number;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export class TInvestHistoryDetaildbQuerys implements IInvestHistoryDetaildbQuerys {
|
|
174
|
+
investHistoryId: number = -1;
|
|
175
|
+
}
|
|
176
|
+
|
|
113
177
|
export interface IInvestHistorySyncdbQuerys {
|
|
114
178
|
uploader: string;
|
|
115
179
|
}
|
|
@@ -125,6 +189,14 @@ export interface ILawSuitSelectdbQuerys {
|
|
|
125
189
|
export class TLawSuitSelectdbQuerys implements ILawSuitSelectdbQuerys {
|
|
126
190
|
}
|
|
127
191
|
|
|
192
|
+
export interface ILawSuitDetaildbQuerys {
|
|
193
|
+
lawSuitId: number;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export class TLawSuitDetaildbQuerys implements ILawSuitDetaildbQuerys {
|
|
197
|
+
lawSuitId: number = -1;
|
|
198
|
+
}
|
|
199
|
+
|
|
128
200
|
export interface ILawSuitSyncdbQuerys {
|
|
129
201
|
uploader: string;
|
|
130
202
|
}
|
|
@@ -140,6 +212,14 @@ export interface ICourtAnnouncementSelectdbQuerys {
|
|
|
140
212
|
export class TCourtAnnouncementSelectdbQuerys implements ICourtAnnouncementSelectdbQuerys {
|
|
141
213
|
}
|
|
142
214
|
|
|
215
|
+
export interface ICourtAnnouncementDetaildbQuerys {
|
|
216
|
+
courtAnnouncementId: number;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export class TCourtAnnouncementDetaildbQuerys implements ICourtAnnouncementDetaildbQuerys {
|
|
220
|
+
courtAnnouncementId: number = -1;
|
|
221
|
+
}
|
|
222
|
+
|
|
143
223
|
export interface ICourtAnnouncementSyncdbQuerys {
|
|
144
224
|
uploader: string;
|
|
145
225
|
}
|
|
@@ -155,6 +235,14 @@ export interface IKtannouncementSelectdbQuerys {
|
|
|
155
235
|
export class TKtannouncementSelectdbQuerys implements IKtannouncementSelectdbQuerys {
|
|
156
236
|
}
|
|
157
237
|
|
|
238
|
+
export interface IKtannouncementDetaildbQuerys {
|
|
239
|
+
ktannouncementId: number;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
export class TKtannouncementDetaildbQuerys implements IKtannouncementDetaildbQuerys {
|
|
243
|
+
ktannouncementId: number = -1;
|
|
244
|
+
}
|
|
245
|
+
|
|
158
246
|
export interface IKtannouncementSyncdbQuerys {
|
|
159
247
|
uploader: string;
|
|
160
248
|
}
|
|
@@ -170,6 +258,14 @@ export interface IDishonestSelectdbQuerys {
|
|
|
170
258
|
export class TDishonestSelectdbQuerys implements IDishonestSelectdbQuerys {
|
|
171
259
|
}
|
|
172
260
|
|
|
261
|
+
export interface IDishonestDetaildbQuerys {
|
|
262
|
+
dishonestId: number;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export class TDishonestDetaildbQuerys implements IDishonestDetaildbQuerys {
|
|
266
|
+
dishonestId: number = -1;
|
|
267
|
+
}
|
|
268
|
+
|
|
173
269
|
export interface IDishonestSyncdbQuerys {
|
|
174
270
|
uploader: string;
|
|
175
271
|
}
|
|
@@ -185,6 +281,14 @@ export interface IGetPledgeRegSelectdbQuerys {
|
|
|
185
281
|
export class TGetPledgeRegSelectdbQuerys implements IGetPledgeRegSelectdbQuerys {
|
|
186
282
|
}
|
|
187
283
|
|
|
284
|
+
export interface IGetPledgeRegDetaildbQuerys {
|
|
285
|
+
getPledgeRegId: number;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
export class TGetPledgeRegDetaildbQuerys implements IGetPledgeRegDetaildbQuerys {
|
|
289
|
+
getPledgeRegId: number = -1;
|
|
290
|
+
}
|
|
291
|
+
|
|
188
292
|
export interface IGetPledgeRegSyncdbQuerys {
|
|
189
293
|
uploader: string;
|
|
190
294
|
}
|
|
@@ -200,6 +304,14 @@ export interface IPublicNoticeSelectdbQuerys {
|
|
|
200
304
|
export class TPublicNoticeSelectdbQuerys implements IPublicNoticeSelectdbQuerys {
|
|
201
305
|
}
|
|
202
306
|
|
|
307
|
+
export interface IPublicNoticeDetaildbQuerys {
|
|
308
|
+
publicNoticeId: number;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export class TPublicNoticeDetaildbQuerys implements IPublicNoticeDetaildbQuerys {
|
|
312
|
+
publicNoticeId: number = -1;
|
|
313
|
+
}
|
|
314
|
+
|
|
203
315
|
export interface IPublicNoticeSyncdbQuerys {
|
|
204
316
|
uploader: string;
|
|
205
317
|
}
|
|
@@ -215,6 +327,14 @@ export interface IPunishmentInfoSelectdbQuerys {
|
|
|
215
327
|
export class TPunishmentInfoSelectdbQuerys implements IPunishmentInfoSelectdbQuerys {
|
|
216
328
|
}
|
|
217
329
|
|
|
330
|
+
export interface IPunishmentInfoDetaildbQuerys {
|
|
331
|
+
punishmentInfoId: number;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export class TPunishmentInfoDetaildbQuerys implements IPunishmentInfoDetaildbQuerys {
|
|
335
|
+
punishmentInfoId: number = -1;
|
|
336
|
+
}
|
|
337
|
+
|
|
218
338
|
export interface IPunishmentInfoSyncdbQuerys {
|
|
219
339
|
uploader: string;
|
|
220
340
|
}
|
|
@@ -230,6 +350,14 @@ export interface ICreditChinaSelectdbQuerys {
|
|
|
230
350
|
export class TCreditChinaSelectdbQuerys implements ICreditChinaSelectdbQuerys {
|
|
231
351
|
}
|
|
232
352
|
|
|
353
|
+
export interface ICreditChinaDetaildbQuerys {
|
|
354
|
+
creditChinaId: number;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export class TCreditChinaDetaildbQuerys implements ICreditChinaDetaildbQuerys {
|
|
358
|
+
creditChinaId: number = -1;
|
|
359
|
+
}
|
|
360
|
+
|
|
233
361
|
export interface ICreditChinaSyncdbQuerys {
|
|
234
362
|
uploader: string;
|
|
235
363
|
}
|
|
@@ -245,6 +373,14 @@ export interface IIllegalInfoSelectdbQuerys {
|
|
|
245
373
|
export class TIllegalInfoSelectdbQuerys implements IIllegalInfoSelectdbQuerys {
|
|
246
374
|
}
|
|
247
375
|
|
|
376
|
+
export interface IIllegalInfoDetaildbQuerys {
|
|
377
|
+
illegalInfoId: number;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export class TIllegalInfoDetaildbQuerys implements IIllegalInfoDetaildbQuerys {
|
|
381
|
+
illegalInfoId: number = -1;
|
|
382
|
+
}
|
|
383
|
+
|
|
248
384
|
export interface IIllegalInfoSyncdbQuerys {
|
|
249
385
|
uploader: string;
|
|
250
386
|
}
|
|
@@ -260,6 +396,14 @@ export interface IEquityInfoSelectdbQuerys {
|
|
|
260
396
|
export class TEquityInfoSelectdbQuerys implements IEquityInfoSelectdbQuerys {
|
|
261
397
|
}
|
|
262
398
|
|
|
399
|
+
export interface IEquityInfoDetaildbQuerys {
|
|
400
|
+
equityInfoId: number;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export class TEquityInfoDetaildbQuerys implements IEquityInfoDetaildbQuerys {
|
|
404
|
+
equityInfoId: number = -1;
|
|
405
|
+
}
|
|
406
|
+
|
|
263
407
|
export interface IEquityInfoSyncdbQuerys {
|
|
264
408
|
uploader: string;
|
|
265
409
|
}
|
|
@@ -275,6 +419,14 @@ export interface IMortgageInfoSelectdbQuerys {
|
|
|
275
419
|
export class TMortgageInfoSelectdbQuerys implements IMortgageInfoSelectdbQuerys {
|
|
276
420
|
}
|
|
277
421
|
|
|
422
|
+
export interface IMortgageInfoDetaildbQuerys {
|
|
423
|
+
mortgageInfoId: number;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
export class TMortgageInfoDetaildbQuerys implements IMortgageInfoDetaildbQuerys {
|
|
427
|
+
mortgageInfoId: number = -1;
|
|
428
|
+
}
|
|
429
|
+
|
|
278
430
|
export interface IMortgageInfoSyncdbQuerys {
|
|
279
431
|
uploader: string;
|
|
280
432
|
}
|
|
@@ -290,6 +442,14 @@ export interface IOwnTaxSelectdbQuerys {
|
|
|
290
442
|
export class TOwnTaxSelectdbQuerys implements IOwnTaxSelectdbQuerys {
|
|
291
443
|
}
|
|
292
444
|
|
|
445
|
+
export interface IOwnTaxDetaildbQuerys {
|
|
446
|
+
ownTaxId: number;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
export class TOwnTaxDetaildbQuerys implements IOwnTaxDetaildbQuerys {
|
|
450
|
+
ownTaxId: number = -1;
|
|
451
|
+
}
|
|
452
|
+
|
|
293
453
|
export interface IOwnTaxSyncdbQuerys {
|
|
294
454
|
uploader: string;
|
|
295
455
|
}
|
|
@@ -305,6 +465,14 @@ export interface IJudicialSaleSelectdbQuerys {
|
|
|
305
465
|
export class TJudicialSaleSelectdbQuerys implements IJudicialSaleSelectdbQuerys {
|
|
306
466
|
}
|
|
307
467
|
|
|
468
|
+
export interface IJudicialSaleDetaildbQuerys {
|
|
469
|
+
judicialSaleId: number;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
export class TJudicialSaleDetaildbQuerys implements IJudicialSaleDetaildbQuerys {
|
|
473
|
+
judicialSaleId: number = -1;
|
|
474
|
+
}
|
|
475
|
+
|
|
308
476
|
export interface IJudicialSaleSyncdbQuerys {
|
|
309
477
|
uploader: string;
|
|
310
478
|
}
|
|
@@ -320,6 +488,14 @@ export interface ICopyRegWorksSelectdbQuerys {
|
|
|
320
488
|
export class TCopyRegWorksSelectdbQuerys implements ICopyRegWorksSelectdbQuerys {
|
|
321
489
|
}
|
|
322
490
|
|
|
491
|
+
export interface ICopyRegWorksDetaildbQuerys {
|
|
492
|
+
copyRegWorksId: number;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
export class TCopyRegWorksDetaildbQuerys implements ICopyRegWorksDetaildbQuerys {
|
|
496
|
+
copyRegWorksId: number = -1;
|
|
497
|
+
}
|
|
498
|
+
|
|
323
499
|
export interface ICopyRegWorksSyncdbQuerys {
|
|
324
500
|
uploader: string;
|
|
325
501
|
}
|
|
@@ -335,6 +511,14 @@ export interface ICopyRegSelectdbQuerys {
|
|
|
335
511
|
export class TCopyRegSelectdbQuerys implements ICopyRegSelectdbQuerys {
|
|
336
512
|
}
|
|
337
513
|
|
|
514
|
+
export interface ICopyRegDetaildbQuerys {
|
|
515
|
+
copyRegId: number;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
export class TCopyRegDetaildbQuerys implements ICopyRegDetaildbQuerys {
|
|
519
|
+
copyRegId: number = -1;
|
|
520
|
+
}
|
|
521
|
+
|
|
338
522
|
export interface ICopyRegSyncdbQuerys {
|
|
339
523
|
uploader: string;
|
|
340
524
|
}
|
|
@@ -350,6 +534,14 @@ export interface IFindHistoryRongziSelectdbQuerys {
|
|
|
350
534
|
export class TFindHistoryRongziSelectdbQuerys implements IFindHistoryRongziSelectdbQuerys {
|
|
351
535
|
}
|
|
352
536
|
|
|
537
|
+
export interface IFindHistoryRongziDetaildbQuerys {
|
|
538
|
+
findHistoryRongziId: number;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
export class TFindHistoryRongziDetaildbQuerys implements IFindHistoryRongziDetaildbQuerys {
|
|
542
|
+
findHistoryRongziId: number = -1;
|
|
543
|
+
}
|
|
544
|
+
|
|
353
545
|
export interface IFindHistoryRongziSyncdbQuerys {
|
|
354
546
|
uploader: string;
|
|
355
547
|
}
|
|
@@ -365,6 +557,14 @@ export interface IFindTeamMemberSelectdbQuerys {
|
|
|
365
557
|
export class TFindTeamMemberSelectdbQuerys implements IFindTeamMemberSelectdbQuerys {
|
|
366
558
|
}
|
|
367
559
|
|
|
560
|
+
export interface IFindTeamMemberDetaildbQuerys {
|
|
561
|
+
findTeamMemberId: number;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
export class TFindTeamMemberDetaildbQuerys implements IFindTeamMemberDetaildbQuerys {
|
|
565
|
+
findTeamMemberId: number = -1;
|
|
566
|
+
}
|
|
567
|
+
|
|
368
568
|
export interface IFindTeamMemberSyncdbQuerys {
|
|
369
569
|
uploader: string;
|
|
370
570
|
}
|
|
@@ -380,6 +580,14 @@ export interface IFindJingpinSelectdbQuerys {
|
|
|
380
580
|
export class TFindJingpinSelectdbQuerys implements IFindJingpinSelectdbQuerys {
|
|
381
581
|
}
|
|
382
582
|
|
|
583
|
+
export interface IFindJingpinDetaildbQuerys {
|
|
584
|
+
findJingpinId: number;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
export class TFindJingpinDetaildbQuerys implements IFindJingpinDetaildbQuerys {
|
|
588
|
+
findJingpinId: number = -1;
|
|
589
|
+
}
|
|
590
|
+
|
|
383
591
|
export interface IFindJingpinSyncdbQuerys {
|
|
384
592
|
uploader: string;
|
|
385
593
|
}
|