@ningboyz/apis 1.7.95 → 1.7.96
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/ssb/socialInsurance.ts +1 -12
- package/packages/ssb/types.ts +0 -6
- package/packages/tyc/baseInfo.ts +1 -12
- package/packages/tyc/changeInfo.ts +1 -12
- package/packages/tyc/copyReg.ts +1 -12
- package/packages/tyc/copyRegWorks.ts +1 -12
- package/packages/tyc/courtAnnouncement.ts +1 -12
- package/packages/tyc/creditChina.ts +1 -12
- package/packages/tyc/dishonest.ts +1 -12
- package/packages/tyc/equityInfo.ts +1 -12
- package/packages/tyc/findHistoryRongzi.ts +1 -12
- package/packages/tyc/findJingpin.ts +1 -12
- package/packages/tyc/findTeamMember.ts +1 -12
- package/packages/tyc/getPledgeReg.ts +1 -12
- package/packages/tyc/holder.ts +1 -12
- package/packages/tyc/holderHistory.ts +1 -12
- package/packages/tyc/illegalInfo.ts +1 -12
- package/packages/tyc/index.ts +0 -90
- package/packages/tyc/inverst.ts +2 -13
- package/packages/tyc/investHistory.ts +1 -12
- package/packages/tyc/judicialSale.ts +1 -12
- package/packages/tyc/ktannouncement.ts +1 -12
- package/packages/tyc/lawSuit.ts +1 -12
- package/packages/tyc/mortgageInfo.ts +1 -12
- package/packages/tyc/ownTax.ts +1 -12
- package/packages/tyc/profile.ts +1 -12
- package/packages/tyc/publicNotice.ts +1 -12
- package/packages/tyc/punishmentInfo.ts +1 -12
- package/packages/tyc/staff.ts +1 -12
- package/packages/tyc/types.ts +0 -156
- package/packages/antv/type.ts~ +0 -57
- package/packages/card/index.ts~ +0 -47
- package/packages/card/tzclbsort.ts~ +0 -36
- package/packages/card/zccz.ts~ +0 -106
- package/packages/expd/type.ts~ +0 -17
- package/packages/noti/type.ts~ +0 -29
- package/packages/wtui/type.ts~ +0 -380
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IInvestHistorySelectdbQuerys,
|
|
3
|
+
import { IInvestHistorySelectdbQuerys, IInvestHistorySyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class InvestHistoryRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class InvestHistoryRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IInvestHistoryResponse[]>("/scczss/investhistory/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IInvestHistoryDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IInvestHistoryResponse[]>("/scczss/investhistory/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IJudicialSaleSelectdbQuerys,
|
|
3
|
+
import { IJudicialSaleSelectdbQuerys, IJudicialSaleSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class JudicialSaleRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class JudicialSaleRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IJudicialSaleResponse[]>("/scczss/judicialsale/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IJudicialSaleDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IJudicialSaleResponse[]>("/scczss/judicialsale/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IKtannouncementSelectdbQuerys,
|
|
3
|
+
import { IKtannouncementSelectdbQuerys, IKtannouncementSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class KtannouncementRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class KtannouncementRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IKtannouncementResponse[]>("/scczss/ktannouncement/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IKtannouncementDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IKtannouncementResponse[]>("/scczss/ktannouncement/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
package/packages/tyc/lawSuit.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { ILawSuitSelectdbQuerys,
|
|
3
|
+
import { ILawSuitSelectdbQuerys, ILawSuitSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class LawSuitRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class LawSuitRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.ILawSuitResponse[]>("/scczss/lawsuit/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: ILawSuitDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.ILawSuitResponse[]>("/scczss/lawsuit/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IMortgageInfoSelectdbQuerys,
|
|
3
|
+
import { IMortgageInfoSelectdbQuerys, IMortgageInfoSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class MortgageInfoRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class MortgageInfoRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IMortgageInfoResponse[]>("/scczss/mortgageinfo/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IMortgageInfoDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IMortgageInfoResponse[]>("/scczss/mortgageinfo/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
package/packages/tyc/ownTax.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IOwnTaxSelectdbQuerys,
|
|
3
|
+
import { IOwnTaxSelectdbQuerys, IOwnTaxSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class OwnTaxRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class OwnTaxRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IOwnTaxResponse[]>("/scczss/owntax/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IOwnTaxDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IOwnTaxResponse[]>("/scczss/owntax/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
package/packages/tyc/profile.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IProfileSelectdbQuerys,
|
|
3
|
+
import { IProfileSelectdbQuerys, IProfileSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class ProfileRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class ProfileRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IProfileResponse[]>("/scczss/profile/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IProfileDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IProfileResponse[]>("/scczss/profile/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IPublicNoticeSelectdbQuerys,
|
|
3
|
+
import { IPublicNoticeSelectdbQuerys, IPublicNoticeSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class PublicNoticeRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class PublicNoticeRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IPublicNoticeResponse[]>("/scczss/publicnotice/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IPublicNoticeDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IPublicNoticeResponse[]>("/scczss/publicnotice/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IPunishmentInfoSelectdbQuerys,
|
|
3
|
+
import { IPunishmentInfoSelectdbQuerys, IPunishmentInfoSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class PunishmentInfoRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class PunishmentInfoRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IPunishmentInfoResponse[]>("/scczss/punishmentinfo/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IPunishmentInfoDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IPunishmentInfoResponse[]>("/scczss/punishmentinfo/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
package/packages/tyc/staff.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TTyc } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IStaffSelectdbQuerys,
|
|
3
|
+
import { IStaffSelectdbQuerys, IStaffSyncdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class StaffRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -19,17 +19,6 @@ class StaffRequest {
|
|
|
19
19
|
return this.httpRequest.post<TTyc.IStaffResponse[]>("/scczss/staff/selectdb", querys, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IStaffDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IStaffResponse[]>("/scczss/staff/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
22
|
/**
|
|
34
23
|
* 同步
|
|
35
24
|
*
|
package/packages/tyc/types.ts
CHANGED
|
@@ -5,12 +5,6 @@ export interface IProfileSelectdbQuerys {
|
|
|
5
5
|
export class TProfileSelectdbQuerys implements IProfileSelectdbQuerys {
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
export interface IProfileDeletedbQuerys {
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export class TProfileDeletedbQuerys implements IProfileDeletedbQuerys {
|
|
12
|
-
}
|
|
13
|
-
|
|
14
8
|
export interface IProfileSyncdbQuerys {
|
|
15
9
|
uploader: string;
|
|
16
10
|
}
|
|
@@ -26,12 +20,6 @@ export interface IBaseInfoSelectdbQuerys {
|
|
|
26
20
|
export class TBaseInfoSelectdbQuerys implements IBaseInfoSelectdbQuerys {
|
|
27
21
|
}
|
|
28
22
|
|
|
29
|
-
export interface IBaseInfoDeletedbQuerys {
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export class TBaseInfoDeletedbQuerys implements IBaseInfoDeletedbQuerys {
|
|
33
|
-
}
|
|
34
|
-
|
|
35
23
|
export interface IBaseInfoSyncdbQuerys {
|
|
36
24
|
uploader: string;
|
|
37
25
|
}
|
|
@@ -47,12 +35,6 @@ export interface IStaffSelectdbQuerys {
|
|
|
47
35
|
export class TStaffSelectdbQuerys implements IStaffSelectdbQuerys {
|
|
48
36
|
}
|
|
49
37
|
|
|
50
|
-
export interface IStaffDeletedbQuerys {
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export class TStaffDeletedbQuerys implements IStaffDeletedbQuerys {
|
|
54
|
-
}
|
|
55
|
-
|
|
56
38
|
export interface IStaffSyncdbQuerys {
|
|
57
39
|
uploader: string;
|
|
58
40
|
}
|
|
@@ -68,12 +50,6 @@ export interface IHolderSelectdbQuerys {
|
|
|
68
50
|
export class THolderSelectdbQuerys implements IHolderSelectdbQuerys {
|
|
69
51
|
}
|
|
70
52
|
|
|
71
|
-
export interface IHolderDeletedbQuerys {
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export class THolderDeletedbQuerys implements IHolderDeletedbQuerys {
|
|
75
|
-
}
|
|
76
|
-
|
|
77
53
|
export interface IHolderSyncdbQuerys {
|
|
78
54
|
uploader: string;
|
|
79
55
|
}
|
|
@@ -89,12 +65,6 @@ export interface IInverstSelectdbQuerys {
|
|
|
89
65
|
export class TInverstSelectdbQuerys implements IInverstSelectdbQuerys {
|
|
90
66
|
}
|
|
91
67
|
|
|
92
|
-
export interface IInverstDeletedbQuerys {
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
export class TInverstDeletedbQuerys implements IInverstDeletedbQuerys {
|
|
96
|
-
}
|
|
97
|
-
|
|
98
68
|
export interface IInverstSyncdbQuerys {
|
|
99
69
|
uploader: string;
|
|
100
70
|
}
|
|
@@ -110,12 +80,6 @@ export interface IChangeInfoSelectdbQuerys {
|
|
|
110
80
|
export class TChangeInfoSelectdbQuerys implements IChangeInfoSelectdbQuerys {
|
|
111
81
|
}
|
|
112
82
|
|
|
113
|
-
export interface IChangeInfoDeletedbQuerys {
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
export class TChangeInfoDeletedbQuerys implements IChangeInfoDeletedbQuerys {
|
|
117
|
-
}
|
|
118
|
-
|
|
119
83
|
export interface IChangeInfoSyncdbQuerys {
|
|
120
84
|
uploader: string;
|
|
121
85
|
}
|
|
@@ -131,12 +95,6 @@ export interface IHolderHistorySelectdbQuerys {
|
|
|
131
95
|
export class THolderHistorySelectdbQuerys implements IHolderHistorySelectdbQuerys {
|
|
132
96
|
}
|
|
133
97
|
|
|
134
|
-
export interface IHolderHistoryDeletedbQuerys {
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
export class THolderHistoryDeletedbQuerys implements IHolderHistoryDeletedbQuerys {
|
|
138
|
-
}
|
|
139
|
-
|
|
140
98
|
export interface IHolderHistorySyncdbQuerys {
|
|
141
99
|
uploader: string;
|
|
142
100
|
}
|
|
@@ -152,12 +110,6 @@ export interface IInvestHistorySelectdbQuerys {
|
|
|
152
110
|
export class TInvestHistorySelectdbQuerys implements IInvestHistorySelectdbQuerys {
|
|
153
111
|
}
|
|
154
112
|
|
|
155
|
-
export interface IInvestHistoryDeletedbQuerys {
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
export class TInvestHistoryDeletedbQuerys implements IInvestHistoryDeletedbQuerys {
|
|
159
|
-
}
|
|
160
|
-
|
|
161
113
|
export interface IInvestHistorySyncdbQuerys {
|
|
162
114
|
uploader: string;
|
|
163
115
|
}
|
|
@@ -173,12 +125,6 @@ export interface ILawSuitSelectdbQuerys {
|
|
|
173
125
|
export class TLawSuitSelectdbQuerys implements ILawSuitSelectdbQuerys {
|
|
174
126
|
}
|
|
175
127
|
|
|
176
|
-
export interface ILawSuitDeletedbQuerys {
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
export class TLawSuitDeletedbQuerys implements ILawSuitDeletedbQuerys {
|
|
180
|
-
}
|
|
181
|
-
|
|
182
128
|
export interface ILawSuitSyncdbQuerys {
|
|
183
129
|
uploader: string;
|
|
184
130
|
}
|
|
@@ -194,12 +140,6 @@ export interface ICourtAnnouncementSelectdbQuerys {
|
|
|
194
140
|
export class TCourtAnnouncementSelectdbQuerys implements ICourtAnnouncementSelectdbQuerys {
|
|
195
141
|
}
|
|
196
142
|
|
|
197
|
-
export interface ICourtAnnouncementDeletedbQuerys {
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
export class TCourtAnnouncementDeletedbQuerys implements ICourtAnnouncementDeletedbQuerys {
|
|
201
|
-
}
|
|
202
|
-
|
|
203
143
|
export interface ICourtAnnouncementSyncdbQuerys {
|
|
204
144
|
uploader: string;
|
|
205
145
|
}
|
|
@@ -215,12 +155,6 @@ export interface IKtannouncementSelectdbQuerys {
|
|
|
215
155
|
export class TKtannouncementSelectdbQuerys implements IKtannouncementSelectdbQuerys {
|
|
216
156
|
}
|
|
217
157
|
|
|
218
|
-
export interface IKtannouncementDeletedbQuerys {
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
export class TKtannouncementDeletedbQuerys implements IKtannouncementDeletedbQuerys {
|
|
222
|
-
}
|
|
223
|
-
|
|
224
158
|
export interface IKtannouncementSyncdbQuerys {
|
|
225
159
|
uploader: string;
|
|
226
160
|
}
|
|
@@ -236,12 +170,6 @@ export interface IDishonestSelectdbQuerys {
|
|
|
236
170
|
export class TDishonestSelectdbQuerys implements IDishonestSelectdbQuerys {
|
|
237
171
|
}
|
|
238
172
|
|
|
239
|
-
export interface IDishonestDeletedbQuerys {
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
export class TDishonestDeletedbQuerys implements IDishonestDeletedbQuerys {
|
|
243
|
-
}
|
|
244
|
-
|
|
245
173
|
export interface IDishonestSyncdbQuerys {
|
|
246
174
|
uploader: string;
|
|
247
175
|
}
|
|
@@ -257,12 +185,6 @@ export interface IGetPledgeRegSelectdbQuerys {
|
|
|
257
185
|
export class TGetPledgeRegSelectdbQuerys implements IGetPledgeRegSelectdbQuerys {
|
|
258
186
|
}
|
|
259
187
|
|
|
260
|
-
export interface IGetPledgeRegDeletedbQuerys {
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
export class TGetPledgeRegDeletedbQuerys implements IGetPledgeRegDeletedbQuerys {
|
|
264
|
-
}
|
|
265
|
-
|
|
266
188
|
export interface IGetPledgeRegSyncdbQuerys {
|
|
267
189
|
uploader: string;
|
|
268
190
|
}
|
|
@@ -278,12 +200,6 @@ export interface IPublicNoticeSelectdbQuerys {
|
|
|
278
200
|
export class TPublicNoticeSelectdbQuerys implements IPublicNoticeSelectdbQuerys {
|
|
279
201
|
}
|
|
280
202
|
|
|
281
|
-
export interface IPublicNoticeDeletedbQuerys {
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
export class TPublicNoticeDeletedbQuerys implements IPublicNoticeDeletedbQuerys {
|
|
285
|
-
}
|
|
286
|
-
|
|
287
203
|
export interface IPublicNoticeSyncdbQuerys {
|
|
288
204
|
uploader: string;
|
|
289
205
|
}
|
|
@@ -299,12 +215,6 @@ export interface IPunishmentInfoSelectdbQuerys {
|
|
|
299
215
|
export class TPunishmentInfoSelectdbQuerys implements IPunishmentInfoSelectdbQuerys {
|
|
300
216
|
}
|
|
301
217
|
|
|
302
|
-
export interface IPunishmentInfoDeletedbQuerys {
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
export class TPunishmentInfoDeletedbQuerys implements IPunishmentInfoDeletedbQuerys {
|
|
306
|
-
}
|
|
307
|
-
|
|
308
218
|
export interface IPunishmentInfoSyncdbQuerys {
|
|
309
219
|
uploader: string;
|
|
310
220
|
}
|
|
@@ -320,12 +230,6 @@ export interface ICreditChinaSelectdbQuerys {
|
|
|
320
230
|
export class TCreditChinaSelectdbQuerys implements ICreditChinaSelectdbQuerys {
|
|
321
231
|
}
|
|
322
232
|
|
|
323
|
-
export interface ICreditChinaDeletedbQuerys {
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
export class TCreditChinaDeletedbQuerys implements ICreditChinaDeletedbQuerys {
|
|
327
|
-
}
|
|
328
|
-
|
|
329
233
|
export interface ICreditChinaSyncdbQuerys {
|
|
330
234
|
uploader: string;
|
|
331
235
|
}
|
|
@@ -341,12 +245,6 @@ export interface IIllegalInfoSelectdbQuerys {
|
|
|
341
245
|
export class TIllegalInfoSelectdbQuerys implements IIllegalInfoSelectdbQuerys {
|
|
342
246
|
}
|
|
343
247
|
|
|
344
|
-
export interface IIllegalInfoDeletedbQuerys {
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
export class TIllegalInfoDeletedbQuerys implements IIllegalInfoDeletedbQuerys {
|
|
348
|
-
}
|
|
349
|
-
|
|
350
248
|
export interface IIllegalInfoSyncdbQuerys {
|
|
351
249
|
uploader: string;
|
|
352
250
|
}
|
|
@@ -362,12 +260,6 @@ export interface IEquityInfoSelectdbQuerys {
|
|
|
362
260
|
export class TEquityInfoSelectdbQuerys implements IEquityInfoSelectdbQuerys {
|
|
363
261
|
}
|
|
364
262
|
|
|
365
|
-
export interface IEquityInfoDeletedbQuerys {
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
export class TEquityInfoDeletedbQuerys implements IEquityInfoDeletedbQuerys {
|
|
369
|
-
}
|
|
370
|
-
|
|
371
263
|
export interface IEquityInfoSyncdbQuerys {
|
|
372
264
|
uploader: string;
|
|
373
265
|
}
|
|
@@ -383,12 +275,6 @@ export interface IMortgageInfoSelectdbQuerys {
|
|
|
383
275
|
export class TMortgageInfoSelectdbQuerys implements IMortgageInfoSelectdbQuerys {
|
|
384
276
|
}
|
|
385
277
|
|
|
386
|
-
export interface IMortgageInfoDeletedbQuerys {
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
export class TMortgageInfoDeletedbQuerys implements IMortgageInfoDeletedbQuerys {
|
|
390
|
-
}
|
|
391
|
-
|
|
392
278
|
export interface IMortgageInfoSyncdbQuerys {
|
|
393
279
|
uploader: string;
|
|
394
280
|
}
|
|
@@ -404,12 +290,6 @@ export interface IOwnTaxSelectdbQuerys {
|
|
|
404
290
|
export class TOwnTaxSelectdbQuerys implements IOwnTaxSelectdbQuerys {
|
|
405
291
|
}
|
|
406
292
|
|
|
407
|
-
export interface IOwnTaxDeletedbQuerys {
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
export class TOwnTaxDeletedbQuerys implements IOwnTaxDeletedbQuerys {
|
|
411
|
-
}
|
|
412
|
-
|
|
413
293
|
export interface IOwnTaxSyncdbQuerys {
|
|
414
294
|
uploader: string;
|
|
415
295
|
}
|
|
@@ -425,12 +305,6 @@ export interface IJudicialSaleSelectdbQuerys {
|
|
|
425
305
|
export class TJudicialSaleSelectdbQuerys implements IJudicialSaleSelectdbQuerys {
|
|
426
306
|
}
|
|
427
307
|
|
|
428
|
-
export interface IJudicialSaleDeletedbQuerys {
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
export class TJudicialSaleDeletedbQuerys implements IJudicialSaleDeletedbQuerys {
|
|
432
|
-
}
|
|
433
|
-
|
|
434
308
|
export interface IJudicialSaleSyncdbQuerys {
|
|
435
309
|
uploader: string;
|
|
436
310
|
}
|
|
@@ -446,12 +320,6 @@ export interface ICopyRegWorksSelectdbQuerys {
|
|
|
446
320
|
export class TCopyRegWorksSelectdbQuerys implements ICopyRegWorksSelectdbQuerys {
|
|
447
321
|
}
|
|
448
322
|
|
|
449
|
-
export interface ICopyRegWorksDeletedbQuerys {
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
export class TCopyRegWorksDeletedbQuerys implements ICopyRegWorksDeletedbQuerys {
|
|
453
|
-
}
|
|
454
|
-
|
|
455
323
|
export interface ICopyRegWorksSyncdbQuerys {
|
|
456
324
|
uploader: string;
|
|
457
325
|
}
|
|
@@ -467,12 +335,6 @@ export interface ICopyRegSelectdbQuerys {
|
|
|
467
335
|
export class TCopyRegSelectdbQuerys implements ICopyRegSelectdbQuerys {
|
|
468
336
|
}
|
|
469
337
|
|
|
470
|
-
export interface ICopyRegDeletedbQuerys {
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
export class TCopyRegDeletedbQuerys implements ICopyRegDeletedbQuerys {
|
|
474
|
-
}
|
|
475
|
-
|
|
476
338
|
export interface ICopyRegSyncdbQuerys {
|
|
477
339
|
uploader: string;
|
|
478
340
|
}
|
|
@@ -488,12 +350,6 @@ export interface IFindHistoryRongziSelectdbQuerys {
|
|
|
488
350
|
export class TFindHistoryRongziSelectdbQuerys implements IFindHistoryRongziSelectdbQuerys {
|
|
489
351
|
}
|
|
490
352
|
|
|
491
|
-
export interface IFindHistoryRongziDeletedbQuerys {
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
export class TFindHistoryRongziDeletedbQuerys implements IFindHistoryRongziDeletedbQuerys {
|
|
495
|
-
}
|
|
496
|
-
|
|
497
353
|
export interface IFindHistoryRongziSyncdbQuerys {
|
|
498
354
|
uploader: string;
|
|
499
355
|
}
|
|
@@ -509,12 +365,6 @@ export interface IFindTeamMemberSelectdbQuerys {
|
|
|
509
365
|
export class TFindTeamMemberSelectdbQuerys implements IFindTeamMemberSelectdbQuerys {
|
|
510
366
|
}
|
|
511
367
|
|
|
512
|
-
export interface IFindTeamMemberDeletedbQuerys {
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
export class TFindTeamMemberDeletedbQuerys implements IFindTeamMemberDeletedbQuerys {
|
|
516
|
-
}
|
|
517
|
-
|
|
518
368
|
export interface IFindTeamMemberSyncdbQuerys {
|
|
519
369
|
uploader: string;
|
|
520
370
|
}
|
|
@@ -530,12 +380,6 @@ export interface IFindJingpinSelectdbQuerys {
|
|
|
530
380
|
export class TFindJingpinSelectdbQuerys implements IFindJingpinSelectdbQuerys {
|
|
531
381
|
}
|
|
532
382
|
|
|
533
|
-
export interface IFindJingpinDeletedbQuerys {
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
export class TFindJingpinDeletedbQuerys implements IFindJingpinDeletedbQuerys {
|
|
537
|
-
}
|
|
538
|
-
|
|
539
383
|
export interface IFindJingpinSyncdbQuerys {
|
|
540
384
|
uploader: string;
|
|
541
385
|
}
|
package/packages/antv/type.ts~
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
/** cnfg */
|
|
2
|
-
export interface IAntvCnfgSelectdbQuerys {
|
|
3
|
-
antvmain: number;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
export class TAntvCnfgSelectdbQuerys implements IAntvCnfgSelectdbQuerys {
|
|
7
|
-
antvmain: number = -1;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface IAntvCnfgDetaildbQuerys {
|
|
11
|
-
antvmain: number;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export class TAntvCnfgDetaildbQuerys implements IAntvCnfgDetaildbQuerys {
|
|
15
|
-
antvmain: number = -1;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
/** main */
|
|
19
|
-
export interface IAntvMainDetaildbQuerys {
|
|
20
|
-
antvmain: number;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export class TAntvMainDetaildbQuerys implements IAntvMainDetaildbQuerys {
|
|
24
|
-
antvmain: number = -1;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface IAntvMainGet5DataQuerys {
|
|
28
|
-
antvname: string;
|
|
29
|
-
cnfgname: string;
|
|
30
|
-
unittypetext: string;
|
|
31
|
-
[key: string]: string;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export class TAntvMainGet5DataQuerys implements IAntvMainGet5DataQuerys {
|
|
35
|
-
antvname: string = "";
|
|
36
|
-
cnfgname: string = "";
|
|
37
|
-
unittypetext: string = "";
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/** para */
|
|
41
|
-
export interface IAntvParaSelectdbQuerys {
|
|
42
|
-
antvmain: number;
|
|
43
|
-
antvcnfg: number;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export class TAntvParaSelectdbQuerys implements IAntvParaSelectdbQuerys {
|
|
47
|
-
antvmain: number = -1;
|
|
48
|
-
antvcnfg: number = -1;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
export interface IAntvParaDetaildbQuerys {
|
|
52
|
-
antvmain: number;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export class TAntvParaDetaildbQuerys implements IAntvParaDetaildbQuerys {
|
|
56
|
-
antvmain: number = -1;
|
|
57
|
-
}
|
package/packages/card/index.ts~
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { createRequest, IAxiosConfig } from "../axios";
|
|
2
|
-
import GblbRequest from "./gblb";
|
|
3
|
-
import MainRequest from "./main";
|
|
4
|
-
import ZcbdRequest from "./zcbd";
|
|
5
|
-
import ZccfRequest from "./zccf";
|
|
6
|
-
import ZcczRequest from "./zccz";
|
|
7
|
-
import ZcdbRequest from "./zcdb";
|
|
8
|
-
import ZclbRequest from "./zclb";
|
|
9
|
-
import FormRequest from "./form";
|
|
10
|
-
import ZczjRequest from "./zczj";
|
|
11
|
-
import P4pzRequest from "./p4pz";
|
|
12
|
-
import ZczjPropRequest from "./zczjProp";
|
|
13
|
-
import TzclbgblbRequest from "./tzclbgblb";
|
|
14
|
-
|
|
15
|
-
class CardRequest {
|
|
16
|
-
public gblb: GblbRequest;
|
|
17
|
-
public main: MainRequest;
|
|
18
|
-
public zcbd: ZcbdRequest;
|
|
19
|
-
public zccf: ZccfRequest;
|
|
20
|
-
public zccz: ZcczRequest;
|
|
21
|
-
public zcdb: ZcdbRequest;
|
|
22
|
-
public zclb: ZclbRequest;
|
|
23
|
-
public form: FormRequest;
|
|
24
|
-
public p4pz: P4pzRequest;
|
|
25
|
-
public zczj: ZczjRequest;
|
|
26
|
-
public zczjProp: ZczjPropRequest;
|
|
27
|
-
public tzclbgblb: TzclbgblbRequest;
|
|
28
|
-
|
|
29
|
-
constructor(config: IAxiosConfig) {
|
|
30
|
-
const request = createRequest(config);
|
|
31
|
-
this.gblb = new GblbRequest(request);
|
|
32
|
-
this.main = new MainRequest(request);
|
|
33
|
-
this.zcbd = new ZcbdRequest(request);
|
|
34
|
-
this.zccf = new ZccfRequest(request);
|
|
35
|
-
this.zccz = new ZcczRequest(request);
|
|
36
|
-
this.zcdb = new ZcdbRequest(request);
|
|
37
|
-
this.zclb = new ZclbRequest(request);
|
|
38
|
-
this.form = new FormRequest(request);
|
|
39
|
-
this.p4pz = new P4pzRequest(request);
|
|
40
|
-
this.zczj = new ZczjRequest(request);
|
|
41
|
-
this.zczjProp = new ZczjPropRequest(request);
|
|
42
|
-
this.tzclbgblb = new TzclbgblbRequest(request);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export default CardRequest;
|
|
47
|
-
export * from "./type";
|