@ningboyz/apis 1.4.86 → 1.4.87
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.87",
|
|
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.87",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/myoa/types.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface IMyoaMainSelectdbQuerys {
|
|
|
7
7
|
useronly: number;
|
|
8
8
|
/** 1001 会议申请 1002 用车申请 1010 盖章 */
|
|
9
9
|
myoatype: number;
|
|
10
|
+
queuesby: number;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
export class TMyoaMainSelectdbQuerys implements IMyoaMainSelectdbQuerys {
|
|
@@ -15,6 +16,7 @@ export class TMyoaMainSelectdbQuerys implements IMyoaMainSelectdbQuerys {
|
|
|
15
16
|
viewonly: number = -1;
|
|
16
17
|
useronly: number = -1;
|
|
17
18
|
myoatype: number = -1;
|
|
19
|
+
queuesby: number = -1;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
export interface IMyoaMainSelectdb2Querys {
|
|
@@ -37,12 +39,14 @@ export interface IMyoaFinishedQuerys {
|
|
|
37
39
|
withflow: number;
|
|
38
40
|
useronly: number;
|
|
39
41
|
unitmain: number;
|
|
42
|
+
queuesby: number;
|
|
40
43
|
}
|
|
41
44
|
export class TMyoaFinishedQuerys implements IMyoaFinishedQuerys {
|
|
42
45
|
myoatype: number = -1;
|
|
43
46
|
withflow: number = -1;
|
|
44
47
|
useronly: number = -1;
|
|
45
48
|
unitmain: number = -1;
|
|
49
|
+
queuesby: number = -1;
|
|
46
50
|
}
|
|
47
51
|
/** ========== room ========== */
|
|
48
52
|
export interface IMyoaRoomSelectdbQuerys {}
|
package/packages/noti/types.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface INotiMainSelectdbQuerys {
|
|
|
6
6
|
unitonly: number;
|
|
7
7
|
unitmain: number;
|
|
8
8
|
withflow: number;
|
|
9
|
+
queuesby: number;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
export class TNotiMainSelectdbQuerys implements INotiMainSelectdbQuerys {
|
|
@@ -15,6 +16,7 @@ export class TNotiMainSelectdbQuerys implements INotiMainSelectdbQuerys {
|
|
|
15
16
|
unitonly: number = -1;
|
|
16
17
|
unitmain: number = -1;
|
|
17
18
|
withflow: number = 0;
|
|
19
|
+
queuesby: number = -1;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
export interface INotiMainInsertdb1Querys {
|
|
@@ -35,10 +37,12 @@ export class TNotiMainDetaildbQuerys implements INotiMainDetaildbQuerys {
|
|
|
35
37
|
|
|
36
38
|
export interface INotiMainFinishedQuerys {
|
|
37
39
|
syspartc: number;
|
|
40
|
+
queuesby: number;
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
export class TNotiMainFinishedQuerys implements INotiMainFinishedQuerys {
|
|
41
44
|
syspartc: number = -1;
|
|
45
|
+
queuesby: number = -1;
|
|
42
46
|
}
|
|
43
47
|
|
|
44
48
|
export interface INotiMainGet4NotiQuerys {
|
package/packages/yzcg/types.ts
CHANGED
|
@@ -4,6 +4,7 @@ export interface IYzcgMainSelectdbQuerys {
|
|
|
4
4
|
directat: number;
|
|
5
5
|
myoatype: number;
|
|
6
6
|
useronly: number;
|
|
7
|
+
queuesby: number;
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
export class TYzcgMainSelectdbQuerys implements IYzcgMainSelectdbQuerys {
|
|
@@ -11,14 +12,17 @@ export class TYzcgMainSelectdbQuerys implements IYzcgMainSelectdbQuerys {
|
|
|
11
12
|
directat: number = -1;
|
|
12
13
|
myoatype: number = -1;
|
|
13
14
|
useronly: number = -1;
|
|
15
|
+
queuesby: number = -1;
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
export interface IYzcgMainFinishdbQuerys {
|
|
17
19
|
sourcend: number;
|
|
20
|
+
queuesby: number;
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
export class TYzcgMainFinishdbQuerys implements IYzcgMainFinishdbQuerys {
|
|
21
24
|
sourcend: number = -1;
|
|
25
|
+
queuesby: number = -1;
|
|
22
26
|
}
|
|
23
27
|
|
|
24
28
|
export interface IYzcgMainDetaildbQuerys {
|