@ningboyz/apis 1.7.94 → 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 -554
- 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/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
- package/packages/wtui/type.ts~ +0 -380
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IGetPledgeRegItemSelectdbQuerys, IGetPledgeRegItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class GetPledgeRegItemRequest {
|
|
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: IGetPledgeRegItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IGetPledgeRegItemResponse[]>("/scczss/getpledgeregitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IGetPledgeRegItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IGetPledgeRegItemResponse[]>("/scczss/getpledgeregitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default GetPledgeRegItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IHolderHistoryItemSelectdbQuerys, IHolderHistoryItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class HolderHistoryItemRequest {
|
|
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: IHolderHistoryItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IHolderHistoryItemResponse[]>("/scczss/holderhistoryitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IHolderHistoryItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IHolderHistoryItemResponse[]>("/scczss/holderhistoryitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default HolderHistoryItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IHolderItemSelectdbQuerys, IHolderItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class HolderItemRequest {
|
|
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: IHolderItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IHolderItemResponse[]>("/scczss/holderitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IHolderItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IHolderItemResponse[]>("/scczss/holderitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default HolderItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IIllegalInfoItemSelectdbQuerys, IIllegalInfoItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class IllegalInfoItemRequest {
|
|
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: IIllegalInfoItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IIllegalInfoItemResponse[]>("/scczss/illegalinfoitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IIllegalInfoItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IIllegalInfoItemResponse[]>("/scczss/illegalinfoitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default IllegalInfoItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IInverstItemSelectdbQuerys, IInverstItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class InverstItemRequest {
|
|
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: IInverstItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IInverstItemResponse[]>("/scczss/inverstitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IInverstItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IInverstItemResponse[]>("/scczss/inverstitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default InverstItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IInvestHistoryItemSelectdbQuerys, IInvestHistoryItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class InvestHistoryItemRequest {
|
|
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: IInvestHistoryItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IInvestHistoryItemResponse[]>("/scczss/investhistoryitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IInvestHistoryItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IInvestHistoryItemResponse[]>("/scczss/investhistoryitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default InvestHistoryItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IJudicialSaleItemSelectdbQuerys, IJudicialSaleItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class JudicialSaleItemRequest {
|
|
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: IJudicialSaleItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IJudicialSaleItemResponse[]>("/scczss/judicialsaleitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IJudicialSaleItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IJudicialSaleItemResponse[]>("/scczss/judicialsaleitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default JudicialSaleItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IKtannouncementItemSelectdbQuerys, IKtannouncementItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class KtannouncementItemRequest {
|
|
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: IKtannouncementItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IKtannouncementItemResponse[]>("/scczss/ktannouncementitem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IKtannouncementItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IKtannouncementItemResponse[]>("/scczss/ktannouncementitem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default KtannouncementItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { ILawSuitItemSelectdbQuerys, ILawSuitItemDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class LawSuitItemRequest {
|
|
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: ILawSuitItemSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.ILawSuitItemResponse[]>("/scczss/lawsuititem/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: ILawSuitItemDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.ILawSuitItemResponse[]>("/scczss/lawsuititem/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default LawSuitItemRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IMortgageInfoBaseInfoSelectdbQuerys, IMortgageInfoBaseInfoDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class MortgageInfoBaseInfoRequest {
|
|
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: IMortgageInfoBaseInfoSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IMortgageInfoBaseInfoResponse[]>("/scczss/mortgageinfobaseinfo/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IMortgageInfoBaseInfoDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IMortgageInfoBaseInfoResponse[]>("/scczss/mortgageinfobaseinfo/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default MortgageInfoBaseInfoRequest;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { TTyc } from "@ningboyz/types";
|
|
2
|
-
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IMortgageInfoChangeInfoSelectdbQuerys, IMortgageInfoChangeInfoDeletedbQuerys } from "./types";
|
|
4
|
-
|
|
5
|
-
class MortgageInfoChangeInfoRequest {
|
|
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: IMortgageInfoChangeInfoSelectdbQuerys, params: object) {
|
|
19
|
-
return this.httpRequest.post<TTyc.IMortgageInfoChangeInfoResponse[]>("/scczss/mortgageinfochangeinfo/selectdb", querys, params);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* 删除列表
|
|
24
|
-
*
|
|
25
|
-
* @param querys
|
|
26
|
-
* @param params
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
deletedb(querys: IMortgageInfoChangeInfoDeletedbQuerys, params: object) {
|
|
30
|
-
return this.httpRequest.post<TTyc.IMortgageInfoChangeInfoResponse[]>("/scczss/mortgageinfochangeinfo/deletedb", querys, params);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default MortgageInfoChangeInfoRequest;
|
|
@@ -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;
|