@ningboyz/apis 1.0.183 → 1.0.185
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/myoa/type.ts +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.185",
|
|
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.0.
|
|
20
|
+
"@ningboyz/types": "1.0.185",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/myoa/type.ts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
/** ========== main ========== */
|
|
2
2
|
export interface IMyoaMainSelectdbQuerys {
|
|
3
|
+
sourcend: number;
|
|
4
|
+
/** 申请-0 审核-1 */
|
|
3
5
|
withflow: number;
|
|
4
6
|
viewonly: number;
|
|
5
7
|
useronly: number;
|
|
8
|
+
/** 1001 会议申请 1002 用车申请 1010 盖章 */
|
|
6
9
|
myoatype: number;
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
export class TMyoaMainSelectdbQuerys implements IMyoaMainSelectdbQuerys {
|
|
10
|
-
|
|
13
|
+
sourcend: number = -1;
|
|
14
|
+
withflow: number = -1;
|
|
11
15
|
viewonly: number = -1;
|
|
12
|
-
useronly: number =
|
|
13
|
-
myoatype: number =
|
|
16
|
+
useronly: number = -1;
|
|
17
|
+
myoatype: number = -1;
|
|
14
18
|
}
|
|
15
19
|
/** ========== main ========== */
|
|
16
20
|
export interface IMyoaMainInsertdb2Querys {
|
|
@@ -54,7 +58,6 @@ export class TMyoaMainDetail2dbQuerys implements IMyoaMainDetail2dbQuerys {
|
|
|
54
58
|
myoamain: number = -1;
|
|
55
59
|
}
|
|
56
60
|
|
|
57
|
-
|
|
58
61
|
/** ========== WithCardRequest ========== */
|
|
59
62
|
export interface IMyoaMainSelectd2Querys {
|
|
60
63
|
withflow: number;
|
|
@@ -124,4 +127,4 @@ export interface IMyoaMainChkinsertQuerys {
|
|
|
124
127
|
export class TMyoaMainChkinsertQuerys implements IMyoaMainChkinsertQuerys {
|
|
125
128
|
cardkjnd: number = -1;
|
|
126
129
|
cardkjqj: number = -1;
|
|
127
|
-
}
|
|
130
|
+
}
|