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