@ningboyz/apis 1.4.43 → 1.4.45
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/card/fwcz.ts +20 -0
- package/packages/hznk/data.ts +14 -1
- package/packages/hznk/type.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.45",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政请求库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ningboyz/types": "1.4.
|
|
20
|
+
"@ningboyz/types": "1.4.45",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/card/fwcz.ts
CHANGED
|
@@ -82,6 +82,26 @@ class FwczRequest {
|
|
|
82
82
|
selectd2(querys: ICardFwczSelectd2Querys, params: object) {
|
|
83
83
|
return this.httpRequest.post<TCard.ICardFwczResponse[]>("/gapi/card/tfwcz/selectd2", querys, params);
|
|
84
84
|
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* 终审房屋出租
|
|
88
|
+
* @param querys
|
|
89
|
+
* @param params
|
|
90
|
+
* @returns
|
|
91
|
+
*/
|
|
92
|
+
executed(querys: IEmptyQuerys, params: object) {
|
|
93
|
+
return this.httpRequest.post<TCard.ICardFwczResponse[]>("/gapi/card/tfwcz/executed", querys, params);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* 撤销终审房屋出租
|
|
98
|
+
* @param querys
|
|
99
|
+
* @param params
|
|
100
|
+
* @returns
|
|
101
|
+
*/
|
|
102
|
+
canceled(querys: IEmptyQuerys, params: object) {
|
|
103
|
+
return this.httpRequest.post<TCard.ICardFwczResponse[]>("/gapi/card/tfwcz/canceled", querys, params);
|
|
104
|
+
}
|
|
85
105
|
}
|
|
86
106
|
|
|
87
107
|
export default FwczRequest;
|
package/packages/hznk/data.ts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { HttpRequest } from "../axios";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
IHznkDataDeletedbQuerys,
|
|
4
|
+
IHznkDataDeptnumsQuerys,
|
|
5
|
+
IHznkDataDetailQuerys,
|
|
6
|
+
IHznkDataFinishedQuerys,
|
|
7
|
+
IHznkDataGet4billQuerys,
|
|
8
|
+
IHznkDataInsertdbQuerys,
|
|
9
|
+
IHznkDataSelectdbQuerys,
|
|
10
|
+
IHznkDataUpdatedbQuerys
|
|
11
|
+
} from "./type";
|
|
3
12
|
import { THznk } from "@ningboyz/types";
|
|
4
13
|
|
|
5
14
|
class DataRequest {
|
|
@@ -35,6 +44,10 @@ class DataRequest {
|
|
|
35
44
|
deptnums(querys: IHznkDataDeptnumsQuerys) {
|
|
36
45
|
return this.httpRequest.post<THznk.IHznkDataResponse[]>("/gapi/hznk/tdata/deptnums", querys, undefined);
|
|
37
46
|
}
|
|
47
|
+
|
|
48
|
+
get4bill(querys: IHznkDataGet4billQuerys) {
|
|
49
|
+
return this.httpRequest.post<THznk.IHznkDataBillResponse[]>("/gapi/hznk/tdata/get4bill", querys, undefined);
|
|
50
|
+
}
|
|
38
51
|
}
|
|
39
52
|
|
|
40
53
|
export default DataRequest;
|
package/packages/hznk/type.ts
CHANGED
|
@@ -43,6 +43,16 @@ export class THznkDataDeptnumsQuerys implements IHznkDataDeptnumsQuerys {
|
|
|
43
43
|
dataType: number = -1;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
export interface IHznkDataGet4billQuerys {
|
|
47
|
+
sourcend: number;
|
|
48
|
+
dataType: number;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export class THznkDataGet4billQuerys implements IHznkDataGet4billQuerys {
|
|
52
|
+
sourcend: number = -1;
|
|
53
|
+
dataType: number = -1;
|
|
54
|
+
}
|
|
55
|
+
|
|
46
56
|
export interface IHznkDataInsertdbQuerys {
|
|
47
57
|
sourcend: number;
|
|
48
58
|
}
|