@ningboyz/apis 1.3.110 → 1.3.112
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/hznj/type.ts +2 -0
- package/packages/myoa/types.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.112",
|
|
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.3.
|
|
20
|
+
"@ningboyz/types": "1.3.112",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/hznj/type.ts
CHANGED
|
@@ -317,11 +317,13 @@ export class THznjNotiSelectdbQuerys implements IHznjNotiSelectdbQuerys {
|
|
|
317
317
|
export interface IHznjNotiSelectmxQuerys {
|
|
318
318
|
sourcend: number;
|
|
319
319
|
withflow: number;
|
|
320
|
+
viewonly: number;
|
|
320
321
|
}
|
|
321
322
|
|
|
322
323
|
export class THznjNotiSelectmxQuerys implements IHznjNotiSelectmxQuerys {
|
|
323
324
|
sourcend: number = -1;
|
|
324
325
|
withflow: number = 0;
|
|
326
|
+
viewonly: number = -1;
|
|
325
327
|
}
|
|
326
328
|
|
|
327
329
|
export interface IHznjNotiFinishedQuerys {
|
package/packages/myoa/types.ts
CHANGED
|
@@ -114,6 +114,10 @@ export interface IMyoaMainSelectd2Querys {
|
|
|
114
114
|
sourcend: number;
|
|
115
115
|
myoatype: number;
|
|
116
116
|
queuesby: number;
|
|
117
|
+
// 根据审核流状态查询
|
|
118
|
+
myoastat: number;
|
|
119
|
+
// 根据确认状态查询0:未确认 1:已确认
|
|
120
|
+
mrokstat: number;
|
|
117
121
|
}
|
|
118
122
|
|
|
119
123
|
export class TMyoaMainSelectd2Querys implements IMyoaMainSelectd2Querys {
|
|
@@ -123,6 +127,10 @@ export class TMyoaMainSelectd2Querys implements IMyoaMainSelectd2Querys {
|
|
|
123
127
|
sourcend: number = -1;
|
|
124
128
|
myoatype: number = -1;
|
|
125
129
|
queuesby: number = -1;
|
|
130
|
+
// 根据审核流状态查询
|
|
131
|
+
myoastat: number = -1;
|
|
132
|
+
// 根据确认状态查询0:未确认 1:已确认
|
|
133
|
+
mrokstat: number = -1;
|
|
126
134
|
}
|
|
127
135
|
export interface IMyoaWithCardFinishedQuerys {
|
|
128
136
|
sourcend: number;
|