@ningboyz/apis 1.7.94 → 1.7.95
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/tyc/types.ts +0 -398
- package/packages/tyc/baseInfoIndustry.ts +0 -34
- package/packages/tyc/changeInfoItem.ts +0 -34
- package/packages/tyc/copyRegItem.ts +0 -34
- package/packages/tyc/copyRegWorksItem.ts +0 -34
- package/packages/tyc/courtAnnouncementItem.ts +0 -34
- package/packages/tyc/creditChinaItem.ts +0 -34
- package/packages/tyc/dishonestItem.ts +0 -34
- package/packages/tyc/equityInfoItem.ts +0 -34
- package/packages/tyc/findHistoryRongziItem.ts +0 -34
- package/packages/tyc/findJingpinItem.ts +0 -34
- package/packages/tyc/findTeamMemberItem.ts +0 -34
- package/packages/tyc/getPledgeRegItem.ts +0 -34
- package/packages/tyc/holderHistoryItem.ts +0 -34
- package/packages/tyc/holderItem.ts +0 -34
- package/packages/tyc/illegalInfoItem.ts +0 -34
- package/packages/tyc/inverstItem.ts +0 -34
- package/packages/tyc/investHistoryItem.ts +0 -34
- package/packages/tyc/judicialSaleItem.ts +0 -34
- package/packages/tyc/ktannouncementItem.ts +0 -34
- package/packages/tyc/lawSuitItem.ts +0 -34
- package/packages/tyc/mortgageInfoBaseInfo.ts +0 -34
- package/packages/tyc/mortgageInfoChangeInfo.ts +0 -34
- package/packages/tyc/mortgageInfoPawnInfo.ts +0 -34
- package/packages/tyc/mortgageInfoPeopleInfo.ts +0 -34
- package/packages/tyc/ownTaxItem.ts +0 -34
- package/packages/tyc/publicInvest.ts +0 -45
- package/packages/tyc/publicInvestItem.ts +0 -34
- package/packages/tyc/publicNoticeItem.ts +0 -34
- package/packages/tyc/punishmentInfoItem.ts +0 -34
- package/packages/tyc/staffItem.ts +0 -34
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IMortgageInfoPawnInfoSelectdbQuerys, IMortgageInfoPawnInfoDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class MortgageInfoPawnInfoRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IMortgageInfoPawnInfoSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IMortgageInfoPawnInfoResponse[]>("/scczss/mortgageinfopawninfo/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IMortgageInfoPawnInfoDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IMortgageInfoPawnInfoResponse[]>("/scczss/mortgageinfopawninfo/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default MortgageInfoPawnInfoRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IMortgageInfoPeopleInfoSelectdbQuerys, IMortgageInfoPeopleInfoDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class MortgageInfoPeopleInfoRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IMortgageInfoPeopleInfoSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IMortgageInfoPeopleInfoResponse[]>("/scczss/mortgageinfopeopleinfo/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IMortgageInfoPeopleInfoDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IMortgageInfoPeopleInfoResponse[]>("/scczss/mortgageinfopeopleinfo/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default MortgageInfoPeopleInfoRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IOwnTaxItemSelectdbQuerys, IOwnTaxItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class OwnTaxItemRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IOwnTaxItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IOwnTaxItemResponse[]>("/scczss/owntaxitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IOwnTaxItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IOwnTaxItemResponse[]>("/scczss/owntaxitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default OwnTaxItemRequest;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IPublicInvestSelectdbQuerys, IPublicInvestDeletedbQuerys, IPublicInvestSyncdbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class PublicInvestRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IPublicInvestSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IPublicInvestResponse[]>("/scczss/publicinvest/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IPublicInvestDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IPublicInvestResponse[]>("/scczss/publicinvest/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
/**
|
|
34
|
-
* 同步
|
|
35
|
-
*
|
|
36
|
-
* @param querys
|
|
37
|
-
* @param params
|
|
38
|
-
* @returns
|
|
39
|
-
*/
|
|
40
|
-
syncdb(querys: IPublicInvestSyncdbQuerys, params: object) {
|
|
41
|
-
return this.httpRequest.post<TTyc.IPublicInvestResponse[]>("/scczss/publicinvest/syncdb", querys, params);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export default PublicInvestRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IPublicInvestItemSelectdbQuerys, IPublicInvestItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class PublicInvestItemRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IPublicInvestItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IPublicInvestItemResponse[]>("/scczss/publicinvestitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IPublicInvestItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IPublicInvestItemResponse[]>("/scczss/publicinvestitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default PublicInvestItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IPublicNoticeItemSelectdbQuerys, IPublicNoticeItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class PublicNoticeItemRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IPublicNoticeItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IPublicNoticeItemResponse[]>("/scczss/publicnoticeitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IPublicNoticeItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IPublicNoticeItemResponse[]>("/scczss/publicnoticeitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default PublicNoticeItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IPunishmentInfoItemSelectdbQuerys, IPunishmentInfoItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class PunishmentInfoItemRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IPunishmentInfoItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IPunishmentInfoItemResponse[]>("/scczss/punishmentinfoitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IPunishmentInfoItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IPunishmentInfoItemResponse[]>("/scczss/punishmentinfoitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default PunishmentInfoItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IStaffItemSelectdbQuerys, IStaffItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class StaffItemRequest {
|
|
6
|
-
private httpRequest: HttpRequest;
|
|
7
|
-
constructor(httpRequest: HttpRequest) {
|
|
8
|
-
this.httpRequest = httpRequest;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* 查询列表
|
|
13
|
-
*
|
|
14
|
-
* @param querys
|
|
15
|
-
* @param params
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
selectdb(querys: IStaffItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IStaffItemResponse[]>("/scczss/staffitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IStaffItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IStaffItemResponse[]>("/scczss/staffitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default StaffItemRequest;
|