@ningboyz/types 1.5.69 → 1.5.71
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,9 +1,9 @@
|
|
|
1
1
|
//#固定资产事项登记
|
|
2
2
|
|
|
3
3
|
import _ from "lodash";
|
|
4
|
+
import * as Const from "../const";
|
|
4
5
|
import { IPathResponse } from "../core/IPathResponse";
|
|
5
6
|
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
6
|
-
import * as Const from "../const";
|
|
7
7
|
import { TCore, TStim } from "../index.ts";
|
|
8
8
|
import { IMyoaMainResponse } from "../myoa/IMyoaMainResponse.ts";
|
|
9
9
|
import { ICardDataBillResponse } from "./ICardDataBillResponse.ts";
|
|
@@ -86,6 +86,15 @@ export interface IDataResponse {
|
|
|
86
86
|
/**仪器状态名称 */
|
|
87
87
|
cardYqztText: string;
|
|
88
88
|
|
|
89
|
+
/** 地址信息.标识 */
|
|
90
|
+
cardRoom: number;
|
|
91
|
+
/** 地址信息.名称 */
|
|
92
|
+
cardRoomText: string;
|
|
93
|
+
/** 巡查模板.标识 */
|
|
94
|
+
dictMain: number;
|
|
95
|
+
/** 巡查模板.名称 */
|
|
96
|
+
dictText: string;
|
|
97
|
+
|
|
89
98
|
autoCpbh: string; //#车牌号
|
|
90
99
|
cardName: string;
|
|
91
100
|
/** 单据编号 */
|
|
@@ -297,6 +306,16 @@ export class TDataResponse implements Type {
|
|
|
297
306
|
cardYqzt: number = 0;
|
|
298
307
|
/**仪器状态名称 */
|
|
299
308
|
cardYqztText: string = "";
|
|
309
|
+
|
|
310
|
+
/** 地址信息.标识 */
|
|
311
|
+
cardRoom: number = 0;
|
|
312
|
+
/** 地址信息.名称 */
|
|
313
|
+
cardRoomText: string = "";
|
|
314
|
+
/** 巡查模板.标识 */
|
|
315
|
+
dictMain: number = 0;
|
|
316
|
+
/** 巡查模板.名称 */
|
|
317
|
+
dictText: string = "";
|
|
318
|
+
|
|
300
319
|
/**保管人 */
|
|
301
320
|
cardMast: number = 0;
|
|
302
321
|
/**保管人 */
|
package/src/const/const_card.ts
CHANGED
|
@@ -8,11 +8,13 @@ export const CONST_CARD_DATA_DATA_TYPE_CLWX = 1005; // #车辆维修
|
|
|
8
8
|
|
|
9
9
|
export const CONST_CARD_DATA_DATA_TYPE_SYDJ = 1009; // #使用登记
|
|
10
10
|
export const CONST_CARD_DATA_DATA_TYPE_SYFK = 1010; //#使用反馈
|
|
11
|
+
export const CONST_CARD_DATA_DATA_TYPE_FWWX = 1011; //#房屋维修
|
|
12
|
+
export const CONST_CARD_DATA_DATA_TYPE_XJJL = 1012; //#巡检记录
|
|
11
13
|
|
|
12
14
|
// 停车场
|
|
13
|
-
export const
|
|
15
|
+
export const CONST_CARD_MAIN_DATA_TYPE_TC = 1011; // #停车场
|
|
14
16
|
// 房产管理
|
|
15
|
-
export const
|
|
17
|
+
export const CONST_CARD_MAIN_DATA_TYPE_FCGL = 1012; // #房产管理
|
|
16
18
|
// card_main
|
|
17
19
|
export const CONST_CARD_MAIN_DATA_TYPE_固定资产_房屋建筑 = 1001
|
|
18
20
|
export const CONST_CARD_MAIN_DATA_TYPE_固定资产_设备车辆 = 2001
|