@ningboyz/types 1.5.137 → 1.5.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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.5.137",
4
+ "version": "1.5.139",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -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
- /** 出租状态:1:已出租;0:未出租;-1:初始化 */
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
- /** 出租状态:1:已出租;0:未出租;-1:初始化 */
270
- roomStat: number = -1;
271
+ /** 房间状态:1:正常;0:删除 */
272
+ roomStat: number = 1;
273
+ /** 删除方式:0:出售、1:拆迁、2:拆违、3:划拨 */
274
+ roomScfs: number = -1;
271
275
 
272
276
  thirdApp: string = "";
273
277
 
@@ -23,7 +23,7 @@ export interface ITablWzk8Response {
23
23
  k8kmKmid: number;
24
24
  k8kmKmmc: string;
25
25
  k8kmKmbm: string;
26
- k8kmJldw: string;
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: string = "";
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,6 +34,8 @@ export interface IWzpzItemResponse {
34
34
  itemPara: string;
35
35
  typeName: string;
36
36
  itemMemo: string;
37
+ k8kmKmid: number;
38
+
37
39
  children: IWzpzItemResponse[];
38
40
  }
39
41
 
@@ -72,6 +74,7 @@ export class TWzpzItemResponse implements IWzpzItemResponse {
72
74
  itemName: string = "";
73
75
  itemPara: string = "";
74
76
  multiVal: number = 0;
77
+ k8kmKmid: number = 0;
75
78
  itemMemo: string = "";
76
79
  typeName: string = "";
77
80
  children: IWzpzItemResponse[] = [];