@ningboyz/types 1.1.0 → 1.1.2
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,4 +1,4 @@
|
|
|
1
|
-
import { IDeptResponse, IDictResponse, ILaidResponse, IPathResponse, IUnitResponse } from "../core";
|
|
1
|
+
import { IDeptResponse, IDictResponse, ILaidResponse, IPathResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
2
2
|
import _ from "lodash";
|
|
3
3
|
import { TFlowDataResponse } from "../flow";
|
|
4
4
|
import { Const, TCore } from "../..";
|
|
@@ -315,6 +315,9 @@ export interface ICardMainResponse {
|
|
|
315
315
|
/** 挂起状态 */
|
|
316
316
|
hideStat: number;
|
|
317
317
|
|
|
318
|
+
/** 定点单位 */
|
|
319
|
+
dddwText: string;
|
|
320
|
+
|
|
318
321
|
/** 单据状态 */
|
|
319
322
|
fromCardStat: number;
|
|
320
323
|
|
|
@@ -355,6 +358,7 @@ export interface ICardMainResponse {
|
|
|
355
358
|
listPropDict: IDictResponse[];
|
|
356
359
|
listPropDept: IDeptResponse[];
|
|
357
360
|
listPath: IPathResponse[];
|
|
361
|
+
listDDDW: IUserLiteResponse[];
|
|
358
362
|
|
|
359
363
|
// 虚拟字段
|
|
360
364
|
cardZjff: string;
|
|
@@ -544,6 +548,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
544
548
|
cardZjnx: number = 0;
|
|
545
549
|
|
|
546
550
|
hideStat: number = 0;
|
|
551
|
+
dddwText: string = "";
|
|
547
552
|
|
|
548
553
|
lastDate: number = 0;
|
|
549
554
|
lastTime: number = 0;
|
|
@@ -574,6 +579,8 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
574
579
|
listPropDict: IDictResponse[] = [];
|
|
575
580
|
listPropDept: IDeptResponse[] = [];
|
|
576
581
|
listPath: IPathResponse[] = [];
|
|
582
|
+
/** 定点单位(司机)*/
|
|
583
|
+
listDDDW: IUserLiteResponse[] = [];
|
|
577
584
|
|
|
578
585
|
// 虚拟字段
|
|
579
586
|
cardZjff: string = "";
|
package/src/const/const_myoa.ts
CHANGED
|
@@ -31,6 +31,16 @@ export const CONST_MODULE_MYOA_YCSQ = "CONST_MODULE_MYOA_YCSQ";
|
|
|
31
31
|
*/
|
|
32
32
|
export const CONST_MODULE_MYOA_YCSH = "CONST_MODULE_MYOA_YCSH";
|
|
33
33
|
|
|
34
|
+
/**
|
|
35
|
+
* 用车变动申请
|
|
36
|
+
*/
|
|
37
|
+
export const CONST_MODULE_MYOA_YCSQ_CHANGE = "CONST_MODULE_MYOA_YCSQ_CHANGE";
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 用车变动审核
|
|
41
|
+
*/
|
|
42
|
+
export const CONST_MODULE_MYOA_YCSH_CHANGE = "CONST_MODULE_MYOA_YCSH_CHANGE";
|
|
43
|
+
|
|
34
44
|
/**
|
|
35
45
|
* 用印申请
|
|
36
46
|
*/
|
|
@@ -71,7 +71,7 @@ export interface IMyoaMainResponse {
|
|
|
71
71
|
dddwText: string;
|
|
72
72
|
dldwText: string;
|
|
73
73
|
yzcgZbkz: number; //招标控制价格
|
|
74
|
-
yzcgZbbh: string;
|
|
74
|
+
yzcgZbbh: string; //
|
|
75
75
|
editedBy: string; //编制人
|
|
76
76
|
|
|
77
77
|
fileType: number; //文件类型
|
|
@@ -154,6 +154,10 @@ export interface IMyoaMainResponse {
|
|
|
154
154
|
* 领用标志
|
|
155
155
|
* */
|
|
156
156
|
mrokStat: number;
|
|
157
|
+
/**
|
|
158
|
+
* 车辆名称
|
|
159
|
+
*/
|
|
160
|
+
cardName: string;
|
|
157
161
|
/**
|
|
158
162
|
* 入仓/领用原卡片
|
|
159
163
|
* */
|
|
@@ -220,7 +224,8 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
220
224
|
unitNamf: string = "";
|
|
221
225
|
deptMain: number = 0;
|
|
222
226
|
dictMain: number = 0;
|
|
223
|
-
|
|
227
|
+
/** 拟公告时间 */
|
|
228
|
+
startOut: number = 0;
|
|
224
229
|
endedOut: number = 0;
|
|
225
230
|
totalOut: number = 0;
|
|
226
231
|
canClose: number = 0;
|
|
@@ -233,23 +238,33 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
233
238
|
flowText: string = "";
|
|
234
239
|
flowUndo: number = 0;
|
|
235
240
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
241
|
+
/** 预算资金 */
|
|
242
|
+
outMoney: number = 0;
|
|
243
|
+
/** 采购项目名称 */
|
|
244
|
+
yzcgCgxm: string = "";
|
|
245
|
+
/** 采购方式 */
|
|
246
|
+
yzcgCgfs: number = 0;
|
|
247
|
+
/** 拟公告媒介 */
|
|
248
|
+
yzcgCgmj: number = 0;
|
|
240
249
|
yzcgCode: string = "";
|
|
241
250
|
yzcgMain: number = 0;
|
|
242
251
|
dddwText: string = "";
|
|
243
252
|
dldwText: string = "";
|
|
244
253
|
yzcgZbkz: number = 0;
|
|
254
|
+
/** 招标编号 */
|
|
245
255
|
yzcgZbbh: string = "";
|
|
246
256
|
editedBy: string = "";
|
|
247
257
|
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
258
|
+
/** 合同编号 */
|
|
259
|
+
yzhtHtbh: string = "";
|
|
260
|
+
/** 签订日期 */
|
|
261
|
+
yzhtQdrq: number = 0;
|
|
262
|
+
/** 验收日期 */
|
|
263
|
+
yzhtYsrq: number = 0;
|
|
264
|
+
/** 合同单号 */
|
|
265
|
+
yzhtCode: string = "";
|
|
266
|
+
/** 合同标识 */
|
|
267
|
+
yzhtMain: number = 0;
|
|
253
268
|
autoType: number = 0;
|
|
254
269
|
|
|
255
270
|
coverURL: string = "";
|
|
@@ -264,10 +279,16 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
264
279
|
userName: string = "";
|
|
265
280
|
userMain: number = 0;
|
|
266
281
|
|
|
267
|
-
|
|
282
|
+
/** 文件类型 */
|
|
283
|
+
fileType: number = 0;
|
|
268
284
|
fileText: string = "";
|
|
269
|
-
|
|
285
|
+
/** 印章类型 */
|
|
286
|
+
dzyzType: number = 0;
|
|
270
287
|
dzyzText: string = "";
|
|
288
|
+
/** 盖章页码 */
|
|
289
|
+
pageNums: string = "";
|
|
290
|
+
/** 有无投影 {0:否,1:有} */
|
|
291
|
+
deviceD1: number = 0;
|
|
271
292
|
|
|
272
293
|
authStat: number = 0;
|
|
273
294
|
autoCpbh: string = "";
|
|
@@ -301,6 +322,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
301
322
|
autoTypeText: string = "";
|
|
302
323
|
rangeOutText: string = "";
|
|
303
324
|
autoModeText: string = "";
|
|
325
|
+
cardName: string = "";
|
|
304
326
|
|
|
305
327
|
laidMain: number = 0;
|
|
306
328
|
laidText: string = "";
|
|
@@ -34,7 +34,13 @@ export interface IMyoaRoomResponse {
|
|
|
34
34
|
cardZLWZ: string;
|
|
35
35
|
userSize: number;
|
|
36
36
|
cardText: string;
|
|
37
|
-
|
|
37
|
+
|
|
38
|
+
wContact: string;
|
|
39
|
+
dContact: string;
|
|
40
|
+
mobileID: string;
|
|
41
|
+
interVal: number;
|
|
42
|
+
|
|
43
|
+
fromCanClose: number;
|
|
38
44
|
}
|
|
39
45
|
|
|
40
46
|
export class TMyoaRoomResponse implements IMyoaRoomResponse {
|
|
@@ -62,7 +68,7 @@ export class TMyoaRoomResponse implements IMyoaRoomResponse {
|
|
|
62
68
|
deleteBy: string = "";
|
|
63
69
|
deleteAt: number = 0;
|
|
64
70
|
queuesBy: number = 0;
|
|
65
|
-
|
|
71
|
+
|
|
66
72
|
entityID: string = "";
|
|
67
73
|
cardType: number = 0;
|
|
68
74
|
/** 资产编码-会议室编号 */
|
|
@@ -77,7 +83,17 @@ export class TMyoaRoomResponse implements IMyoaRoomResponse {
|
|
|
77
83
|
cardZLWZ: string = "";
|
|
78
84
|
/** 容纳人数 */
|
|
79
85
|
userSize: number = 0;
|
|
80
|
-
/**会议室状态 */
|
|
81
|
-
fromCanClose:number = 0
|
|
82
86
|
cardText: string = "";
|
|
87
|
+
|
|
88
|
+
/** 联系人 */
|
|
89
|
+
wContact: string = "";
|
|
90
|
+
/** 联系方式 */
|
|
91
|
+
dContact: string = "";
|
|
92
|
+
/** 手机号码(发短信用) */
|
|
93
|
+
mobileID: string = "";
|
|
94
|
+
/** 间歇时间(分钟) */
|
|
95
|
+
interVal: number = 0;
|
|
96
|
+
|
|
97
|
+
/**会议室状态 */
|
|
98
|
+
fromCanClose: number = 0;
|
|
83
99
|
}
|