@ningboyz/apis 1.6.193 → 1.6.195
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/gzzd/main.ts +8 -4
- package/packages/myoa/main.ts +18 -18
- package/packages/myoa/types.ts +146 -145
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.195",
|
|
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.195",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/gzzd/main.ts
CHANGED
|
@@ -2,14 +2,18 @@ import { TGzjg, TGzzd } from "@ningboyz/types";
|
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
3
|
import {
|
|
4
4
|
IGzzdMainDetaildbQuerys,
|
|
5
|
-
IGzzdMainFinishedQuerys,
|
|
5
|
+
IGzzdMainFinishedQuerys,
|
|
6
|
+
IGzzdMainGet2formulaQuerys,
|
|
6
7
|
IGzzdMainGet4billQuerys,
|
|
7
8
|
IGzzdMainGet4BillWithZwlxQuerys,
|
|
8
9
|
IGzzdMainGet4gzlmQuerys,
|
|
9
10
|
IGzzdMainGet4gzzdQuerys,
|
|
10
11
|
IGzzdMainGet5BillWithZwlxQuerys,
|
|
11
12
|
IGzzdMainSelectdbQuerys,
|
|
12
|
-
IGzzdMainUpdatedbQuerys,
|
|
13
|
+
IGzzdMainUpdatedbQuerys,
|
|
14
|
+
IGzzdMainWithgzjgQuerys,
|
|
15
|
+
TGzzdMainDetaild2Querys,
|
|
16
|
+
IGzzdMainSet4userQuerys,
|
|
13
17
|
IGzzdMainDel4userQuerys
|
|
14
18
|
} from "./types";
|
|
15
19
|
|
|
@@ -24,8 +28,8 @@ class ParaRequest {
|
|
|
24
28
|
* @param querys
|
|
25
29
|
* @returns
|
|
26
30
|
*/
|
|
27
|
-
selectdb(querys: IGzzdMainSelectdbQuerys) {
|
|
28
|
-
return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gzzd/tmain/selectdb", querys,
|
|
31
|
+
selectdb(querys: IGzzdMainSelectdbQuerys, params: object) {
|
|
32
|
+
return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gzzd/tmain/selectdb", querys, params);
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
/**
|
package/packages/myoa/main.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TCore, TMyoa } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
3
|
import { IEmptyQuerys } from "../type";
|
|
4
4
|
import {
|
|
5
5
|
IMyoaFinishedQuerys,
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
IMyoaMainCheckdbQuerys,
|
|
7
|
+
IMyoaMainDel4cardQuerys,
|
|
8
|
+
IMyoaMainDetaild2Querys,
|
|
9
|
+
IMyoaMainInsertd2Querys,
|
|
10
|
+
IMyoaMainInsertdbQuerys,
|
|
8
11
|
IMyoaMainScheduleQuerys,
|
|
9
|
-
|
|
12
|
+
IMyoaMainSelectd2Querys,
|
|
13
|
+
IMyoaMainSelectd3Querys,
|
|
10
14
|
IMyoaMainSelectdbQuerys,
|
|
15
|
+
IMyoaMainSet4cardQuerys,
|
|
11
16
|
IMyoaMainSet4pathQuerys,
|
|
12
17
|
IMyoaMainUpdated4Querys,
|
|
13
|
-
IMyoaMainUsesdzqzUpdatedbQuerys,
|
|
14
|
-
TMyoaMainDetaildbQuerys,
|
|
15
|
-
TMyoaMainMrokdbQuerys,
|
|
16
|
-
IMyoaMainSet4cardQuerys,
|
|
17
|
-
IMyoaMainCheckdbQuerys,
|
|
18
18
|
IMyoaMainUploadd4Querys,
|
|
19
19
|
IMyoaMainUploadd5Querys,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
IMyoaMainUsesdzqzUpdatedbQuerys,
|
|
21
|
+
TMyoaMainDetaildbQuerys,
|
|
22
|
+
TMyoaMainMrokdbQuerys
|
|
23
23
|
} from "./types";
|
|
24
24
|
|
|
25
25
|
class ParaRequest {
|
|
@@ -44,18 +44,18 @@ class ParaRequest {
|
|
|
44
44
|
* @param params
|
|
45
45
|
* @returns
|
|
46
46
|
*/
|
|
47
|
-
selectd2(querys:
|
|
47
|
+
selectd2(querys: IMyoaMainSelectd2Querys) {
|
|
48
48
|
return this.httpRequest.post<TMyoa.IMyoaMainResponse[]>("/gapi/myoa/tmain/selectd2", querys, undefined);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* 获取内部办公列表-明细
|
|
53
53
|
* @param querys
|
|
54
54
|
* @param params
|
|
55
55
|
* @returns
|
|
56
56
|
*/
|
|
57
|
-
|
|
58
|
-
return this.httpRequest.post<TMyoa.IMyoaMainResponse[]>("/gapi/myoa/tmain/
|
|
57
|
+
selectd3(querys: IMyoaMainSelectd3Querys, params: object) {
|
|
58
|
+
return this.httpRequest.post<TMyoa.IMyoaMainResponse[]>("/gapi/myoa/tmain/selectd3", querys, params);
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
/**
|
|
@@ -102,7 +102,7 @@ class ParaRequest {
|
|
|
102
102
|
* @param params
|
|
103
103
|
* @returns
|
|
104
104
|
*/
|
|
105
|
-
insertd2(querys:
|
|
105
|
+
insertd2(querys: IMyoaMainInsertd2Querys, params: object) {
|
|
106
106
|
return this.httpRequest.post<TMyoa.IMyoaMainResponse[]>("/gapi/myoa/tmain/insertd2", querys, params);
|
|
107
107
|
}
|
|
108
108
|
|
|
@@ -121,7 +121,7 @@ class ParaRequest {
|
|
|
121
121
|
* @param querys
|
|
122
122
|
* @returns
|
|
123
123
|
*/
|
|
124
|
-
detaild2(querys:
|
|
124
|
+
detaild2(querys: IMyoaMainDetaild2Querys) {
|
|
125
125
|
return this.httpRequest.post<TMyoa.IMyoaMainResponse[]>("/gapi/myoa/tmain/detaild2", querys, undefined);
|
|
126
126
|
}
|
|
127
127
|
|
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
|
+
showpath: number;
|
|
10
11
|
queuesby: string;
|
|
11
12
|
}
|
|
12
13
|
|
|
@@ -16,10 +17,23 @@ export class TMyoaMainSelectdbQuerys implements IMyoaMainSelectdbQuerys {
|
|
|
16
17
|
viewonly: number = -1;
|
|
17
18
|
useronly: number = -1;
|
|
18
19
|
myoatype: number = -1;
|
|
20
|
+
showpath: number = -1;
|
|
19
21
|
queuesby: string = "";
|
|
20
22
|
}
|
|
21
23
|
|
|
22
|
-
export interface
|
|
24
|
+
export interface IMyoaMainSelectd2Querys {
|
|
25
|
+
sourcend: number;
|
|
26
|
+
myoatype: number;
|
|
27
|
+
queuesby: number;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class TMyoaMainSelectd2Querys implements IMyoaMainSelectd2Querys {
|
|
31
|
+
sourcend: number = -1;
|
|
32
|
+
myoatype: number = -1;
|
|
33
|
+
queuesby: number = -1;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface IMyoaMainSelectd3Querys {
|
|
23
37
|
sourcend: number;
|
|
24
38
|
/** 申请-0 审核-1 */
|
|
25
39
|
withflow: number;
|
|
@@ -27,95 +41,48 @@ export interface IMyoaMainSelectdb3Querys {
|
|
|
27
41
|
useronly: number;
|
|
28
42
|
/** 1001 会议申请 1002 用车申请 1010 盖章 */
|
|
29
43
|
myoatype: number;
|
|
44
|
+
showbill: number;
|
|
30
45
|
queuesby: string;
|
|
31
|
-
showpath: number;
|
|
32
46
|
}
|
|
33
47
|
|
|
34
|
-
export class
|
|
48
|
+
export class TMyoaMainSelectd3Querys implements IMyoaMainSelectd3Querys {
|
|
35
49
|
sourcend: number = -1;
|
|
36
50
|
withflow: number = -1;
|
|
37
51
|
viewonly: number = -1;
|
|
38
52
|
useronly: number = -1;
|
|
39
53
|
myoatype: number = -1;
|
|
54
|
+
showbill: number = -1;
|
|
40
55
|
queuesby: string = "";
|
|
41
|
-
showpath: number = -1;
|
|
42
56
|
}
|
|
43
57
|
|
|
44
|
-
export interface
|
|
58
|
+
export interface IMyoaMainInsertdbQuerys {
|
|
45
59
|
sourcend: number;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
useronly: number;
|
|
60
|
+
unitmain: number;
|
|
61
|
+
myoacode: string;
|
|
62
|
+
datahide: number;
|
|
50
63
|
}
|
|
51
64
|
|
|
52
|
-
export class
|
|
65
|
+
export class TMyoaMainInsertdbQuerys implements IMyoaMainInsertdbQuerys {
|
|
53
66
|
sourcend: number = -1;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
67
|
+
unitmain: number = -1;
|
|
68
|
+
myoacode: string = "";
|
|
69
|
+
datahide: number = -1;
|
|
57
70
|
}
|
|
58
71
|
|
|
59
|
-
export interface
|
|
72
|
+
export interface IMyoaMainDetaildbQuerys {
|
|
60
73
|
myoamain: number;
|
|
61
74
|
}
|
|
62
75
|
|
|
63
|
-
export class
|
|
76
|
+
export class TMyoaMainDetaildbQuerys implements IMyoaMainDetaildbQuerys {
|
|
64
77
|
myoamain: number = -1;
|
|
65
78
|
}
|
|
66
79
|
|
|
67
|
-
export interface
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
useronly: number;
|
|
71
|
-
unitmain: number;
|
|
72
|
-
sourcend: number;
|
|
73
|
-
queuesby: string;
|
|
74
|
-
}
|
|
75
|
-
export class TMyoaFinishedQuerys implements IMyoaFinishedQuerys {
|
|
76
|
-
myoatype: number = -1;
|
|
77
|
-
withflow: number = -1;
|
|
78
|
-
useronly: number = -1;
|
|
79
|
-
unitmain: number = -1;
|
|
80
|
-
sourcend: number = -1;
|
|
81
|
-
queuesby: string = "";
|
|
82
|
-
}
|
|
83
|
-
/** ========== room ========== */
|
|
84
|
-
export interface IMyoaRoomSelectdbQuerys {}
|
|
85
|
-
|
|
86
|
-
export class TMyoaRoomSelectdbQuerys implements IMyoaRoomSelectdbQuerys {}
|
|
87
|
-
export interface IMyoaRoomGet5lastQuerys {
|
|
88
|
-
myoatype: number;
|
|
89
|
-
myoaroom: number;
|
|
90
|
-
}
|
|
91
|
-
export class TMyoaRoomGet5lastQuerys implements IMyoaRoomGet5lastQuerys {
|
|
92
|
-
myoatype: number = -1;
|
|
93
|
-
myoaroom: number = -1;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export interface IMyoaMainScheduleQuerys {
|
|
97
|
-
myoatype: number;
|
|
98
|
-
sourcend: number;
|
|
99
|
-
}
|
|
100
|
-
export class TMyoaMainScheduleQuerys implements IMyoaMainScheduleQuerys {
|
|
101
|
-
myoatype: number = -1;
|
|
102
|
-
sourcend: number = -1;
|
|
80
|
+
export interface IMyoaMainDetail2dbQuerys {
|
|
81
|
+
/** 单据主键 */
|
|
82
|
+
myoamain: number;
|
|
103
83
|
}
|
|
104
84
|
|
|
105
|
-
|
|
106
|
-
export interface IMyoaMainInsertdbQuerys {
|
|
107
|
-
sourcend: number;
|
|
108
|
-
unitmain: number;
|
|
109
|
-
myoacode: string;
|
|
110
|
-
datahide: number;
|
|
111
|
-
}
|
|
112
|
-
export class TMyoaMainInsertdbQuerys implements IMyoaMainInsertdbQuerys {
|
|
113
|
-
sourcend: number = -1;
|
|
114
|
-
unitmain: number = -1;
|
|
115
|
-
myoacode: string = "";
|
|
116
|
-
datahide: number = -1;
|
|
117
|
-
}
|
|
118
|
-
export interface IMyoaMainInsertdb2Querys {
|
|
85
|
+
export interface IMyoaMainInsertd2Querys {
|
|
119
86
|
/** 结账年度 */
|
|
120
87
|
cardkjnd: number;
|
|
121
88
|
/** 结账期间 */
|
|
@@ -123,7 +90,7 @@ export interface IMyoaMainInsertdb2Querys {
|
|
|
123
90
|
myoacode: string;
|
|
124
91
|
}
|
|
125
92
|
|
|
126
|
-
export class
|
|
93
|
+
export class TMyoaMainInsertd2Querys implements IMyoaMainInsertd2Querys {
|
|
127
94
|
cardkjnd: number = -1;
|
|
128
95
|
cardkjqj: number = -1;
|
|
129
96
|
myoacode: string = "";
|
|
@@ -143,49 +110,139 @@ export class TMyoaMainUpdated4Querys implements IMyoaMainUpdated4Querys {
|
|
|
143
110
|
myoacode: string = "";
|
|
144
111
|
}
|
|
145
112
|
|
|
146
|
-
export interface
|
|
113
|
+
export interface IMyoaMainDetaild2Querys {
|
|
147
114
|
myoamain: number;
|
|
148
115
|
}
|
|
149
116
|
|
|
150
|
-
export class
|
|
117
|
+
export class TMyoaMainDetaild2Querys implements IMyoaMainDetaild2Querys {
|
|
151
118
|
myoamain: number = -1;
|
|
152
119
|
}
|
|
153
120
|
|
|
154
|
-
export interface
|
|
121
|
+
export interface IMyoaMainMrokdbQuerys {
|
|
122
|
+
/** 领用 */
|
|
123
|
+
mrokstat: number;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export class TMyoaMainMrokdbQuerys implements IMyoaMainMrokdbQuerys {
|
|
127
|
+
mrokstat: number = -1;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export interface IMyoaMainSet4pathQuerys {
|
|
155
131
|
/** 单据主键 */
|
|
156
132
|
myoamain: number;
|
|
157
133
|
}
|
|
158
134
|
|
|
159
|
-
export class
|
|
160
|
-
|
|
135
|
+
export class TMyoaMainSet4pathQuerys implements IMyoaMainSet4pathQuerys {
|
|
136
|
+
/** 单据主键 */
|
|
137
|
+
myoamain: number = 0;
|
|
161
138
|
}
|
|
162
139
|
|
|
163
|
-
|
|
164
|
-
|
|
140
|
+
export interface IMyoaMainUsesdzqzUpdatedbQuerys {
|
|
141
|
+
/** 单据主键 */
|
|
142
|
+
myoamain: number;
|
|
143
|
+
/** 签章状态 */
|
|
144
|
+
usesdzqz: number;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export class TMyoaMainUsesdzqzUpdatedbQuerys implements IMyoaMainUsesdzqzUpdatedbQuerys {
|
|
148
|
+
/** 单据主键 */
|
|
149
|
+
myoamain: number = 0;
|
|
150
|
+
/** 签章状态 */
|
|
151
|
+
usesdzqz: number = 0;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface IMyoaFinishedQuerys {
|
|
155
|
+
myoatype: number;
|
|
165
156
|
withflow: number;
|
|
166
|
-
viewonly: number;
|
|
167
157
|
useronly: number;
|
|
158
|
+
unitmain: number;
|
|
168
159
|
sourcend: number;
|
|
169
|
-
|
|
170
|
-
queuesby: number;
|
|
171
|
-
// 根据审核流状态查询
|
|
172
|
-
myoastat: number;
|
|
173
|
-
// 根据确认状态查询0:未确认 1:已确认
|
|
174
|
-
mrokstat: number;
|
|
160
|
+
queuesby: string;
|
|
175
161
|
}
|
|
176
162
|
|
|
177
|
-
export class
|
|
178
|
-
|
|
179
|
-
|
|
163
|
+
export class TMyoaFinishedQuerys implements IMyoaFinishedQuerys {
|
|
164
|
+
myoatype: number = -1;
|
|
165
|
+
withflow: number = -1;
|
|
180
166
|
useronly: number = -1;
|
|
167
|
+
unitmain: number = -1;
|
|
181
168
|
sourcend: number = -1;
|
|
169
|
+
queuesby: string = "";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface IMyoaMainScheduleQuerys {
|
|
173
|
+
myoatype: number;
|
|
174
|
+
sourcend: number;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export class TMyoaMainScheduleQuerys implements IMyoaMainScheduleQuerys {
|
|
182
178
|
myoatype: number = -1;
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
179
|
+
sourcend: number = -1;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export interface IMyoaMainDel4cardQuerys {
|
|
183
|
+
myoamain: number;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export class TMyoaMainDel4cardQuerys implements IMyoaMainDel4cardQuerys {
|
|
187
|
+
myoamain: number = -1;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface IMyoaMainSet4cardQuerys {
|
|
191
|
+
/** 单据主键 */
|
|
192
|
+
myoamain: number;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export class TMyoaMainSet4cardQuerys implements IMyoaMainSet4cardQuerys {
|
|
196
|
+
/** 单据主键 */
|
|
197
|
+
myoamain: number = 0;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
export interface IMyoaMainCheckdbQuerys {
|
|
201
|
+
|
|
188
202
|
}
|
|
203
|
+
|
|
204
|
+
export class TMyoaMainCheckdbQuerys implements IMyoaMainCheckdbQuerys {
|
|
205
|
+
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface IMyoaMainUploadd4Querys {
|
|
209
|
+
/**单据状态 */
|
|
210
|
+
myoastat: number;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export class TMyoaMainUploadd4Querys implements IMyoaMainUploadd4Querys {
|
|
214
|
+
myoastat: number = 0;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export interface IMyoaMainUploadd5Querys {
|
|
218
|
+
/**解锁状态 1:解锁 0:未解锁*/
|
|
219
|
+
canclose: number;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export class TMyoaMainUploadd5Querys implements IMyoaMainUploadd5Querys {
|
|
223
|
+
canclose: number = 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/** ========== room ========== */
|
|
227
|
+
export interface IMyoaRoomSelectdbQuerys {
|
|
228
|
+
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export class TMyoaRoomSelectdbQuerys implements IMyoaRoomSelectdbQuerys {
|
|
232
|
+
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface IMyoaRoomGet5lastQuerys {
|
|
236
|
+
myoatype: number;
|
|
237
|
+
myoaroom: number;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export class TMyoaRoomGet5lastQuerys implements IMyoaRoomGet5lastQuerys {
|
|
241
|
+
myoatype: number = -1;
|
|
242
|
+
myoaroom: number = -1;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/** ========== WithCardRequest ========== */
|
|
189
246
|
export interface IMyoaWithCardFinishedQuerys {
|
|
190
247
|
sourcend: number;
|
|
191
248
|
unitmain: number;
|
|
@@ -201,6 +258,7 @@ export class TMyoaWithCardFinishedQuerys implements IMyoaWithCardFinishedQuerys
|
|
|
201
258
|
queuesby: number = -1;
|
|
202
259
|
useronly: number = -1;
|
|
203
260
|
}
|
|
261
|
+
|
|
204
262
|
export interface IMyoaWithCardTodosizeQuerys {
|
|
205
263
|
sourcend: number;
|
|
206
264
|
myoatype: number;
|
|
@@ -220,14 +278,6 @@ export class TMyoaWithCardTodolistQuerys implements IMyoaWithCardTodolistQuerys
|
|
|
220
278
|
sourcend: number = -1;
|
|
221
279
|
myoatype: number = -1;
|
|
222
280
|
}
|
|
223
|
-
export interface IMyoaMainMrokdbQuerys {
|
|
224
|
-
/** 领用 */
|
|
225
|
-
mrokstat: number;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
export class TMyoaMainMrokdbQuerys implements IMyoaMainMrokdbQuerys {
|
|
229
|
-
mrokstat: number = -1;
|
|
230
|
-
}
|
|
231
281
|
|
|
232
282
|
export interface IMyoaMainChkinsertQuerys {
|
|
233
283
|
/** 结账年度 */
|
|
@@ -289,52 +339,3 @@ export class TMyoaMainGetzydj2Querys implements IMyoaMainGetzydj2Querys {
|
|
|
289
339
|
endedout: number = -1;
|
|
290
340
|
flownode: number = -1;
|
|
291
341
|
}
|
|
292
|
-
|
|
293
|
-
export interface IMyoaMainSet4pathQuerys {
|
|
294
|
-
/** 单据主键 */
|
|
295
|
-
myoamain: number;
|
|
296
|
-
}
|
|
297
|
-
export class TMyoaMainSet4pathQuerys implements IMyoaMainSet4pathQuerys {
|
|
298
|
-
/** 单据主键 */
|
|
299
|
-
myoamain: number = 0;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
export interface IMyoaMainUsesdzqzUpdatedbQuerys {
|
|
303
|
-
/** 单据主键 */
|
|
304
|
-
myoamain: number;
|
|
305
|
-
/** 签章状态 */
|
|
306
|
-
usesdzqz: number;
|
|
307
|
-
}
|
|
308
|
-
export class TMyoaMainUsesdzqzUpdatedbQuerys implements IMyoaMainUsesdzqzUpdatedbQuerys {
|
|
309
|
-
/** 单据主键 */
|
|
310
|
-
myoamain: number = 0;
|
|
311
|
-
/** 签章状态 */
|
|
312
|
-
usesdzqz: number = 0;
|
|
313
|
-
}
|
|
314
|
-
export interface IMyoaMainSet4cardQuerys {
|
|
315
|
-
/** 单据主键 */
|
|
316
|
-
myoamain: number;
|
|
317
|
-
}
|
|
318
|
-
export class TMyoaMainSet4cardQuerys implements IMyoaMainSet4cardQuerys {
|
|
319
|
-
/** 单据主键 */
|
|
320
|
-
myoamain: number = 0;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
export interface IMyoaMainCheckdbQuerys {}
|
|
324
|
-
export class TMyoaMainCheckdbQuerys implements IMyoaMainCheckdbQuerys {}
|
|
325
|
-
|
|
326
|
-
export interface IMyoaMainUploadd4Querys {
|
|
327
|
-
/**单据状态 */
|
|
328
|
-
myoastat: number;
|
|
329
|
-
}
|
|
330
|
-
export class TMyoaMainUploadd4Querys implements IMyoaMainUploadd4Querys {
|
|
331
|
-
myoastat: number = 0;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
export interface IMyoaMainUploadd5Querys {
|
|
335
|
-
/**解锁状态 1:解锁 0:未解锁*/
|
|
336
|
-
canclose: number;
|
|
337
|
-
}
|
|
338
|
-
export class TMyoaMainUploadd5Querys implements IMyoaMainUploadd5Querys {
|
|
339
|
-
canclose: number = 0;
|
|
340
|
-
}
|