@ningboyz/apis 1.7.92 → 1.7.94
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/index.ts +43 -29
- package/package.json +2 -2
- package/packages/antv/type.ts~ +57 -0
- package/packages/axios.ts +5 -4
- 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/gztb/main.ts +42 -5
- package/packages/gztb/types.ts +20 -0
- package/packages/index.ts +5 -2
- package/packages/noti/type.ts~ +29 -0
- package/packages/ssb/index.ts +15 -0
- package/packages/ssb/socialInsurance.ts +45 -0
- package/packages/ssb/types.ts +20 -0
- package/packages/tyc/baseInfo.ts +45 -0
- package/packages/tyc/baseInfoIndustry.ts +34 -0
- package/packages/tyc/changeInfo.ts +45 -0
- package/packages/tyc/changeInfoItem.ts +34 -0
- package/packages/tyc/copyReg.ts +45 -0
- package/packages/tyc/copyRegItem.ts +34 -0
- package/packages/tyc/copyRegWorks.ts +45 -0
- package/packages/tyc/copyRegWorksItem.ts +34 -0
- package/packages/tyc/courtAnnouncement.ts +45 -0
- package/packages/tyc/courtAnnouncementItem.ts +34 -0
- package/packages/tyc/creditChina.ts +45 -0
- package/packages/tyc/creditChinaItem.ts +34 -0
- package/packages/tyc/dishonest.ts +45 -0
- package/packages/tyc/dishonestItem.ts +34 -0
- package/packages/tyc/equityInfo.ts +45 -0
- package/packages/tyc/equityInfoItem.ts +34 -0
- package/packages/tyc/findHistoryRongzi.ts +45 -0
- package/packages/tyc/findHistoryRongziItem.ts +34 -0
- package/packages/tyc/findJingpin.ts +45 -0
- package/packages/tyc/findJingpinItem.ts +34 -0
- package/packages/tyc/findTeamMember.ts +45 -0
- package/packages/tyc/findTeamMemberItem.ts +34 -0
- package/packages/tyc/getPledgeReg.ts +45 -0
- package/packages/tyc/getPledgeRegItem.ts +34 -0
- package/packages/tyc/holder.ts +45 -0
- package/packages/tyc/holderHistory.ts +45 -0
- package/packages/tyc/holderHistoryItem.ts +34 -0
- package/packages/tyc/holderItem.ts +34 -0
- package/packages/tyc/illegalInfo.ts +45 -0
- package/packages/tyc/illegalInfoItem.ts +34 -0
- package/packages/tyc/index.ts +183 -0
- package/packages/tyc/inverst.ts +44 -0
- package/packages/tyc/inverstItem.ts +34 -0
- package/packages/tyc/investHistory.ts +45 -0
- package/packages/tyc/investHistoryItem.ts +34 -0
- package/packages/tyc/judicialSale.ts +45 -0
- package/packages/tyc/judicialSaleItem.ts +34 -0
- package/packages/tyc/ktannouncement.ts +45 -0
- package/packages/tyc/ktannouncementItem.ts +34 -0
- package/packages/tyc/lawSuit.ts +45 -0
- package/packages/tyc/lawSuitItem.ts +34 -0
- package/packages/tyc/mortgageInfo.ts +45 -0
- package/packages/tyc/mortgageInfoBaseInfo.ts +34 -0
- package/packages/tyc/mortgageInfoChangeInfo.ts +34 -0
- package/packages/tyc/mortgageInfoPawnInfo.ts +34 -0
- package/packages/tyc/mortgageInfoPeopleInfo.ts +34 -0
- package/packages/tyc/ownTax.ts +45 -0
- package/packages/tyc/ownTaxItem.ts +34 -0
- package/packages/tyc/profile.ts +45 -0
- package/packages/tyc/publicInvest.ts +45 -0
- package/packages/tyc/publicInvestItem.ts +34 -0
- package/packages/tyc/publicNotice.ts +45 -0
- package/packages/tyc/publicNoticeItem.ts +34 -0
- package/packages/tyc/punishmentInfo.ts +45 -0
- package/packages/tyc/punishmentInfoItem.ts +34 -0
- package/packages/tyc/staff.ts +45 -0
- package/packages/tyc/staffItem.ts +34 -0
- package/packages/tyc/sync.ts +22 -0
- package/packages/tyc/types.ts +954 -0
- package/packages/wtui/type.ts~ +380 -0
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { TTyc } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IOwnTaxSelectdbQuerys, IOwnTaxDeletedbQuerys, IOwnTaxSyncdbQuerys } from "./types";
|
|
4
|
+
|
|
5
|
+
class OwnTaxRequest {
|
|
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: IOwnTaxSelectdbQuerys, params: object) {
|
|
19
|
+
return this.httpRequest.post<TTyc.IOwnTaxResponse[]>("/scczss/owntax/selectdb", querys, params);
|
|
20
|
+
}
|
|
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
|
+
/**
|
|
34
|
+
* 同步
|
|
35
|
+
*
|
|
36
|
+
* @param querys
|
|
37
|
+
* @param params
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
syncdb(querys: IOwnTaxSyncdbQuerys, params: object) {
|
|
41
|
+
return this.httpRequest.post<TTyc.IOwnTaxResponse[]>("/scczss/owntax/syncdb", querys, params);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export default OwnTaxRequest;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { TTyc } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IProfileSelectdbQuerys, IProfileDeletedbQuerys, IProfileSyncdbQuerys } from "./types";
|
|
4
|
+
|
|
5
|
+
class ProfileRequest {
|
|
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: IProfileSelectdbQuerys, params: object) {
|
|
19
|
+
return this.httpRequest.post<TTyc.IProfileResponse[]>("/scczss/profile/selectdb", querys, params);
|
|
20
|
+
}
|
|
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
|
+
/**
|
|
34
|
+
* 同步
|
|
35
|
+
*
|
|
36
|
+
* @param querys
|
|
37
|
+
* @param params
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
syncdb(querys: IProfileSyncdbQuerys, params: object) {
|
|
41
|
+
return this.httpRequest.post<TTyc.IProfileResponse[]>("/scczss/profile/syncdb", querys, params);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export default ProfileRequest;
|
|
@@ -0,0 +1,45 @@
|
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { TTyc } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IPublicNoticeSelectdbQuerys, IPublicNoticeDeletedbQuerys, IPublicNoticeSyncdbQuerys } from "./types";
|
|
4
|
+
|
|
5
|
+
class PublicNoticeRequest {
|
|
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: IPublicNoticeSelectdbQuerys, params: object) {
|
|
19
|
+
return this.httpRequest.post<TTyc.IPublicNoticeResponse[]>("/scczss/publicnotice/selectdb", querys, params);
|
|
20
|
+
}
|
|
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
|
+
/**
|
|
34
|
+
* 同步
|
|
35
|
+
*
|
|
36
|
+
* @param querys
|
|
37
|
+
* @param params
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
syncdb(querys: IPublicNoticeSyncdbQuerys, params: object) {
|
|
41
|
+
return this.httpRequest.post<TTyc.IPublicNoticeResponse[]>("/scczss/publicnotice/syncdb", querys, params);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export default PublicNoticeRequest;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { TTyc } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IPunishmentInfoSelectdbQuerys, IPunishmentInfoDeletedbQuerys, IPunishmentInfoSyncdbQuerys } from "./types";
|
|
4
|
+
|
|
5
|
+
class PunishmentInfoRequest {
|
|
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: IPunishmentInfoSelectdbQuerys, params: object) {
|
|
19
|
+
return this.httpRequest.post<TTyc.IPunishmentInfoResponse[]>("/scczss/punishmentinfo/selectdb", querys, params);
|
|
20
|
+
}
|
|
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
|
+
/**
|
|
34
|
+
* 同步
|
|
35
|
+
*
|
|
36
|
+
* @param querys
|
|
37
|
+
* @param params
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
syncdb(querys: IPunishmentInfoSyncdbQuerys, params: object) {
|
|
41
|
+
return this.httpRequest.post<TTyc.IPunishmentInfoResponse[]>("/scczss/punishmentinfo/syncdb", querys, params);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export default PunishmentInfoRequest;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { TTyc } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IStaffSelectdbQuerys, IStaffDeletedbQuerys, IStaffSyncdbQuerys } from "./types";
|
|
4
|
+
|
|
5
|
+
class StaffRequest {
|
|
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: IStaffSelectdbQuerys, params: object) {
|
|
19
|
+
return this.httpRequest.post<TTyc.IStaffResponse[]>("/scczss/staff/selectdb", querys, params);
|
|
20
|
+
}
|
|
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
|
+
/**
|
|
34
|
+
* 同步
|
|
35
|
+
*
|
|
36
|
+
* @param querys
|
|
37
|
+
* @param params
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
syncdb(querys: IStaffSyncdbQuerys, params: object) {
|
|
41
|
+
return this.httpRequest.post<TTyc.IStaffResponse[]>("/scczss/staff/syncdb", querys, params);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export default StaffRequest;
|
|
@@ -0,0 +1,34 @@
|
|
|
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;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { HttpRequest } from "../axios";
|
|
2
|
+
import { ISyncSyncdbQuerys } from "./types";
|
|
3
|
+
|
|
4
|
+
class SyncRequest {
|
|
5
|
+
private httpRequest: HttpRequest;
|
|
6
|
+
constructor(httpRequest: HttpRequest) {
|
|
7
|
+
this.httpRequest = httpRequest;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 同步
|
|
12
|
+
*
|
|
13
|
+
* @param querys
|
|
14
|
+
* @param params
|
|
15
|
+
* @returns
|
|
16
|
+
*/
|
|
17
|
+
syncdb(querys: ISyncSyncdbQuerys, params: object) {
|
|
18
|
+
return this.httpRequest.post<unknown>("/scczss/sync/syncdb", querys, params);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default SyncRequest;
|