@ningboyz/types 1.5.138 → 1.5.140
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
|
@@ -373,6 +373,9 @@ export interface ICardMainResponse {
|
|
|
373
373
|
/** 政府债券(文本) */
|
|
374
374
|
cardZfzqText: string;
|
|
375
375
|
|
|
376
|
+
/** 管理状态(1:在管;0:历史) */
|
|
377
|
+
cardGlzt: number;
|
|
378
|
+
|
|
376
379
|
fromBillIndx: number;
|
|
377
380
|
|
|
378
381
|
/** 单据状态 */
|
|
@@ -676,6 +679,8 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
676
679
|
cardZfzq: number = 0;
|
|
677
680
|
cardZfzqText: string = "";
|
|
678
681
|
|
|
682
|
+
cardGlzt: number = 1;
|
|
683
|
+
|
|
679
684
|
lastDate: number = 0;
|
|
680
685
|
lastTime: number = 0;
|
|
681
686
|
flowMain: number = 0;
|
|
@@ -129,8 +129,10 @@ export interface ICardRoomResponse {
|
|
|
129
129
|
/** 闲置状态.名称 */
|
|
130
130
|
xzztText: string;
|
|
131
131
|
|
|
132
|
-
/**
|
|
132
|
+
/** 房间状态(1:正常;0:删除) */
|
|
133
133
|
roomStat: number;
|
|
134
|
+
/** 删除方式(0:出售、1:拆迁、2:拆违、3:划拨) */
|
|
135
|
+
roomScfs: number;
|
|
134
136
|
|
|
135
137
|
thirdApp: string;
|
|
136
138
|
|
|
@@ -266,8 +268,10 @@ export class TCardRoomResponse implements ICardRoomResponse {
|
|
|
266
268
|
/** 闲置状态.名称 */
|
|
267
269
|
xzztText: string = "";
|
|
268
270
|
|
|
269
|
-
/**
|
|
270
|
-
roomStat: number =
|
|
271
|
+
/** 房间状态:1:正常;0:删除 */
|
|
272
|
+
roomStat: number = 1;
|
|
273
|
+
/** 删除方式:0:出售、1:拆迁、2:拆违、3:划拨 */
|
|
274
|
+
roomScfs: number = -1;
|
|
271
275
|
|
|
272
276
|
thirdApp: string = "";
|
|
273
277
|
|
|
@@ -77,6 +77,7 @@ export interface ITablMainResponse {
|
|
|
77
77
|
ERORMEMO: string;
|
|
78
78
|
userMain: number;
|
|
79
79
|
usesAuto?: number;
|
|
80
|
+
tablMode: number;
|
|
80
81
|
listData: Array<ITablDataResponse>;
|
|
81
82
|
listPath: TCore.IPathResponse[];
|
|
82
83
|
listWZK8: ITablWzk8Response[];
|
|
@@ -153,6 +154,7 @@ export class TTablMainResponse implements ITablMainResponse {
|
|
|
153
154
|
unitTypeText: string = "";
|
|
154
155
|
taskMain: number = 0;
|
|
155
156
|
userMain: number = 0;
|
|
157
|
+
tablMode: number = 0;
|
|
156
158
|
listData: Array<ITablDataResponse> = [];
|
|
157
159
|
listPath: TCore.IPathResponse[] = [];
|
|
158
160
|
listWZK8: ITablWzk8Response[] = [];
|
|
@@ -23,7 +23,7 @@ export interface ITablWzk8Response {
|
|
|
23
23
|
k8kmKmid: number;
|
|
24
24
|
k8kmKmmc: string;
|
|
25
25
|
k8kmKmbm: string;
|
|
26
|
-
k8kmJldw:
|
|
26
|
+
k8kmJldw: number;
|
|
27
27
|
k8kmGgxh: string;
|
|
28
28
|
itemMain: number;
|
|
29
29
|
itemCode: string;
|
|
@@ -34,6 +34,7 @@ export interface ITablWzk8Response {
|
|
|
34
34
|
applyOut: number;
|
|
35
35
|
finalOut: number;
|
|
36
36
|
billMemo: string;
|
|
37
|
+
jldwText: string;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
export class TTablWzk8Response implements ITablWzk8Response {
|
|
@@ -66,7 +67,7 @@ export class TTablWzk8Response implements ITablWzk8Response {
|
|
|
66
67
|
/** 科目编码 */
|
|
67
68
|
k8kmKmbm: string = "";
|
|
68
69
|
/** 计量单位 */
|
|
69
|
-
k8kmJldw:
|
|
70
|
+
k8kmJldw: number = 0;
|
|
70
71
|
|
|
71
72
|
k8kmGgxh: string = "";
|
|
72
73
|
/** 物资号型 */
|
|
@@ -88,6 +89,8 @@ export class TTablWzk8Response implements ITablWzk8Response {
|
|
|
88
89
|
finalOut: number = 0;
|
|
89
90
|
/** 备注信息 */
|
|
90
91
|
billMemo: string = "";
|
|
92
|
+
/** 计量单位文本 */
|
|
93
|
+
jldwText: string = "";
|
|
91
94
|
|
|
92
95
|
constructor(data: Partial<ITablWzk8Response> = {}) {
|
|
93
96
|
if (data) {
|
|
@@ -27,6 +27,12 @@ export interface IWtuiItemParaResponse {
|
|
|
27
27
|
effect: IDictEffect;
|
|
28
28
|
calc: ICalcEffect;
|
|
29
29
|
fromTypeDefault: number[]; //字典的默认值
|
|
30
|
+
/** 关联的列表的动态表单indx */
|
|
31
|
+
relativeFormIndx: number | undefined;
|
|
32
|
+
/** 关联的列表的动态表单获取数据的url */
|
|
33
|
+
relativeFormUrl: string | undefined;
|
|
34
|
+
/** 对齐方式(1:左对齐 2:居中 3:右对齐) */
|
|
35
|
+
itemPostion: number | undefined;
|
|
30
36
|
}
|
|
31
37
|
|
|
32
38
|
export class TWtuiItemParaResponse implements IWtuiItemParaResponse {
|
|
@@ -56,4 +62,10 @@ export class TWtuiItemParaResponse implements IWtuiItemParaResponse {
|
|
|
56
62
|
effect: IDictEffect = new TDictEffect();
|
|
57
63
|
calc: ICalcEffect = new TCalcEffect();
|
|
58
64
|
fromTypeDefault: number[] = []; //字典的默认值
|
|
65
|
+
/** 关联的列表的动态表单indx */
|
|
66
|
+
relativeFormIndx: number | undefined = undefined;
|
|
67
|
+
/** 关联的列表的动态表单获取数据的url */
|
|
68
|
+
relativeFormUrl: string | undefined = undefined;
|
|
69
|
+
/** 对齐方式(1:左对齐 2:居中 3:右对齐) */
|
|
70
|
+
itemPostion: number | undefined = 1;
|
|
59
71
|
}
|
|
@@ -34,7 +34,8 @@ export interface IWzpzItemResponse {
|
|
|
34
34
|
itemPara: string;
|
|
35
35
|
typeName: string;
|
|
36
36
|
itemMemo: string;
|
|
37
|
-
|
|
37
|
+
k8kmKmid: number;
|
|
38
|
+
|
|
38
39
|
children: IWzpzItemResponse[];
|
|
39
40
|
}
|
|
40
41
|
|
|
@@ -73,7 +74,7 @@ export class TWzpzItemResponse implements IWzpzItemResponse {
|
|
|
73
74
|
itemName: string = "";
|
|
74
75
|
itemPara: string = "";
|
|
75
76
|
multiVal: number = 0;
|
|
76
|
-
|
|
77
|
+
k8kmKmid: number = 0;
|
|
77
78
|
itemMemo: string = "";
|
|
78
79
|
typeName: string = "";
|
|
79
80
|
children: IWzpzItemResponse[] = [];
|