@ningboyz/types 1.1.11 → 1.1.13
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
|
@@ -334,6 +334,13 @@ export interface ICardMainResponse {
|
|
|
334
334
|
/** 调拨后存放地点.名称 */
|
|
335
335
|
fromLaidText: string;
|
|
336
336
|
|
|
337
|
+
/** 开始时间 */
|
|
338
|
+
startOut: number;
|
|
339
|
+
/** 结束时间 */
|
|
340
|
+
endedOut: number;
|
|
341
|
+
/** 使用id */
|
|
342
|
+
cardMain: number;
|
|
343
|
+
|
|
337
344
|
fromValueNew: number;
|
|
338
345
|
|
|
339
346
|
lastDate: number;
|
|
@@ -570,6 +577,10 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
570
577
|
fromDeptText: string = "";
|
|
571
578
|
fromLaidText: string = "";
|
|
572
579
|
|
|
580
|
+
startOut: number = 0;
|
|
581
|
+
endedOut: number = 0;
|
|
582
|
+
cardMain: number = 0;
|
|
583
|
+
|
|
573
584
|
/** 二维码 */
|
|
574
585
|
cardQrde: string = "";
|
|
575
586
|
|