@ningboyz/apis 1.6.108 → 1.6.110
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/main.ts +11 -0
- package/packages/card/types.ts +20 -4
- package/packages/yzht/types.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.110",
|
|
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.6.
|
|
20
|
+
"@ningboyz/types": "1.6.110",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/card/main.ts
CHANGED
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
ICardMainCopydbQuerys,
|
|
7
7
|
ICardMainDeleted2Querys,
|
|
8
8
|
ICardMainDetaild2Querys,
|
|
9
|
+
ICardMainDetaild3Querys,
|
|
9
10
|
ICardMainDetaildbQuerys,
|
|
10
11
|
ICardMainFinishedQuerys,
|
|
11
12
|
ICardMainGet4ChangeQuerys,
|
|
@@ -346,6 +347,16 @@ class MainRequest {
|
|
|
346
347
|
updated8(querys: ICardMainUpdated8Querys) {
|
|
347
348
|
return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/withroom/updatedb", querys, undefined);
|
|
348
349
|
}
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* 资产卡片详情
|
|
353
|
+
* @param querys
|
|
354
|
+
* @param params
|
|
355
|
+
* @returns
|
|
356
|
+
*/
|
|
357
|
+
detaild3(querys: ICardMainDetaild3Querys, params: IParams<TCard.ICardMainResponse> | undefined) {
|
|
358
|
+
return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/detaild3", querys, params);
|
|
359
|
+
}
|
|
349
360
|
}
|
|
350
361
|
|
|
351
362
|
export default MainRequest;
|
package/packages/card/types.ts
CHANGED
|
@@ -877,6 +877,14 @@ export class TCardMainUpdated8Querys implements ICardMainUpdated8Querys {
|
|
|
877
877
|
cardexid: number = -1;
|
|
878
878
|
}
|
|
879
879
|
|
|
880
|
+
export interface ICardMainDetaild3Querys {
|
|
881
|
+
entityid: string;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
export class TCardMainDetaild3Querys implements ICardMainDetaild3Querys {
|
|
885
|
+
entityid: string = "";
|
|
886
|
+
}
|
|
887
|
+
|
|
880
888
|
/** ========== hyhb ==========*/
|
|
881
889
|
export interface ICardHyhbSelectdbQuerys {
|
|
882
890
|
viewonly: number;
|
|
@@ -1027,7 +1035,15 @@ export interface ICardZcpdBillSelectdbQuerys {
|
|
|
1027
1035
|
}
|
|
1028
1036
|
|
|
1029
1037
|
export class TCardZcpdBillSelectdbQuerys implements ICardZcpdBillSelectdbQuerys {
|
|
1030
|
-
zcpdmain: number
|
|
1031
|
-
cardmain: number
|
|
1032
|
-
cardexid: number
|
|
1033
|
-
}
|
|
1038
|
+
zcpdmain: number = -1;
|
|
1039
|
+
cardmain: number = -1;
|
|
1040
|
+
cardexid: number = -1;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
export interface ICardMainDetaild3Querys {
|
|
1044
|
+
entityid: string;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
export class TCardMainDetaild3Querys implements ICardMainDetaild3Querys {
|
|
1048
|
+
entityid: string = "";
|
|
1049
|
+
}
|
package/packages/yzht/types.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface IYzhtMainSelectdbQuerys {
|
|
|
19
19
|
withfwcz: number;
|
|
20
20
|
withdzmx: number;
|
|
21
21
|
withfymx: number;
|
|
22
|
+
withbill: number;
|
|
22
23
|
withlock: number;
|
|
23
24
|
queuesby: string;
|
|
24
25
|
}
|
|
@@ -43,6 +44,7 @@ export class TYzhtMainSelectdbQuerys implements IYzhtMainSelectdbQuerys {
|
|
|
43
44
|
withfwcz: number = -1;
|
|
44
45
|
withdzmx: number = -1;
|
|
45
46
|
withfymx: number = -1;
|
|
47
|
+
withbill: number = -1;
|
|
46
48
|
withlock: number = -1;
|
|
47
49
|
queuesby: string = "";
|
|
48
50
|
}
|