@ningboyz/types 1.0.138 → 1.0.139
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
|
@@ -331,6 +331,8 @@ export interface ICardMainResponse {
|
|
|
331
331
|
/** 调拨后存放地点.名称 */
|
|
332
332
|
fromLaidText: string;
|
|
333
333
|
|
|
334
|
+
fromValueNew: number;
|
|
335
|
+
|
|
334
336
|
lastDate: number;
|
|
335
337
|
lastTime: number;
|
|
336
338
|
flowMain: number;
|
|
@@ -580,6 +582,8 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
580
582
|
|
|
581
583
|
ywdjIndx: number = 0;
|
|
582
584
|
|
|
585
|
+
fromValueNew: number = 0;
|
|
586
|
+
|
|
583
587
|
constructor(card: any = {}) {
|
|
584
588
|
if (card) {
|
|
585
589
|
_.merge(this, _.pick(card, Object.keys(this)));
|
|
@@ -123,6 +123,35 @@ export interface IMyoaMainResponse {
|
|
|
123
123
|
rangeOutText: string;
|
|
124
124
|
autoModeText: string;
|
|
125
125
|
|
|
126
|
+
/**
|
|
127
|
+
* 公物仓
|
|
128
|
+
* */
|
|
129
|
+
laidMain: number
|
|
130
|
+
/**
|
|
131
|
+
* 入仓/领用数量
|
|
132
|
+
* */
|
|
133
|
+
cardSize: number;
|
|
134
|
+
/**
|
|
135
|
+
* 入仓/领用原值
|
|
136
|
+
* */
|
|
137
|
+
totalVal: number;
|
|
138
|
+
/**
|
|
139
|
+
* 入仓/领用理由
|
|
140
|
+
* */
|
|
141
|
+
reasonBy: string;
|
|
142
|
+
/**
|
|
143
|
+
* 领用标志
|
|
144
|
+
* */
|
|
145
|
+
mrokStat: string;
|
|
146
|
+
/**
|
|
147
|
+
* 入仓/领用原卡片
|
|
148
|
+
* */
|
|
149
|
+
listBeforeAsset: ICardMainResponse[];
|
|
150
|
+
/**
|
|
151
|
+
* 入仓/领用新卡片
|
|
152
|
+
* */
|
|
153
|
+
listAfterAsset: ICardMainResponse[];
|
|
154
|
+
|
|
126
155
|
listLock: IMyoaMainResponse[];
|
|
127
156
|
listCard: ICardMainResponse[];
|
|
128
157
|
listPath: IPathResponse[];
|
|
@@ -255,6 +284,14 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
255
284
|
rangeOutText: string = "";
|
|
256
285
|
autoModeText: string = "";
|
|
257
286
|
|
|
287
|
+
laidMain: number = 0;
|
|
288
|
+
cardSize: number = 0;
|
|
289
|
+
totalVal: number = 0;
|
|
290
|
+
reasonBy: string = "";
|
|
291
|
+
mrokStat: string = "";
|
|
292
|
+
listBeforeAsset: ICardMainResponse[] = [];
|
|
293
|
+
listAfterAsset: ICardMainResponse[] = [];
|
|
294
|
+
|
|
258
295
|
listLock: IMyoaMainResponse[] = [];
|
|
259
296
|
listCard: ICardMainResponse[] = [];
|
|
260
297
|
listPath: IPathResponse[] = [];
|