@ningboyz/types 1.5.70 → 1.5.72

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.70",
4
+ "version": "1.5.72",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -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
  /**保管人 */
@@ -168,4 +168,6 @@ export enum TButtonType {
168
168
  checkBill = "checkBill",
169
169
  /** 异常处理 */
170
170
  exceptionHandling = "exceptionHandling",
171
+ /** 同步 */
172
+ sync = "sync",
171
173
  }