@ningboyz/types 1.0.146 → 1.0.148
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
|
@@ -5,6 +5,7 @@ export interface IDictResponseDictPara {
|
|
|
5
5
|
hidden: boolean;
|
|
6
6
|
show: boolean;
|
|
7
7
|
gdzc: boolean; //字典-部门类型是否是固定资产
|
|
8
|
+
unused: number; //字典-资产状态_固定资产是否是闲置状态
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
@@ -14,4 +15,5 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
14
15
|
hidden: boolean = false;
|
|
15
16
|
show: boolean = false;
|
|
16
17
|
gdzc: boolean = false;
|
|
18
|
+
unused: number = 0;
|
|
17
19
|
}
|
|
@@ -128,6 +128,10 @@ export interface IMyoaMainResponse {
|
|
|
128
128
|
* 公物仓
|
|
129
129
|
* */
|
|
130
130
|
laidMain: number
|
|
131
|
+
/**
|
|
132
|
+
* 公物仓名称
|
|
133
|
+
* */
|
|
134
|
+
laidText: string
|
|
131
135
|
/**
|
|
132
136
|
* 入仓/领用数量
|
|
133
137
|
* */
|
|
@@ -286,6 +290,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
286
290
|
autoModeText: string = "";
|
|
287
291
|
|
|
288
292
|
laidMain: number = 0;
|
|
293
|
+
laidText: string = "";
|
|
289
294
|
cardSize: number = 0;
|
|
290
295
|
totalVal: number = 0;
|
|
291
296
|
reasonBy: string = "";
|