@ningboyz/types 1.4.165 → 1.4.167

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.4.165",
4
+ "version": "1.4.167",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -100,6 +100,7 @@ export const CONST_SYS_TYPEU_EXPD_CCSP_CCQX = "出差-出差情形";
100
100
  export const CONST_SYS_TYPEU_YZCQ_CTLX = "抽签-重投类型";
101
101
  export const CONST_SYS_TYPEU_CLGL_DLLX = "车辆管理-动力类型";
102
102
  export const CONST_SYS_TYPEU_CLGL_QDFS = "车辆管理-取得方式";
103
+ export const CONST_SYS_TYPEU_HYS_SYZT = "会议室-使用状态";
103
104
  export const CONST_SYS_TYPEU_ZFQD = "支付渠道";
104
105
 
105
106
  export const CONST_SYS_TYPEU_ZBGL_ZBFL = "装备管理-装备分类";
@@ -40,6 +40,10 @@ export interface IMyoaRoomResponse {
40
40
  mobileID: string;
41
41
  interVal: number;
42
42
 
43
+ // 车辆状态-字典
44
+ dictName: string;
45
+ dictMain: number;
46
+
43
47
  fromCanClose: number;
44
48
  }
45
49
 
@@ -94,6 +98,9 @@ export class TMyoaRoomResponse implements IMyoaRoomResponse {
94
98
  /** 间歇时间(分钟) */
95
99
  interVal: number = 0;
96
100
 
101
+ dictName: string = "";
102
+ dictMain: number = 0;
103
+
97
104
  /**会议室状态 */
98
105
  fromCanClose: number = 0;
99
106
  }
@@ -325,6 +325,11 @@ export interface IYzhtMainResponse {
325
325
  expectEd: number;
326
326
  yzhtLock: number;
327
327
 
328
+ /** 一体化项目名称 */
329
+ hzcbTxt1: string;
330
+ /** 项目名称 */
331
+ hzcbName: string;
332
+
328
333
  /** 支付期数 */
329
334
  billSize: number;
330
335
  billStat?: number | undefined;
@@ -660,6 +665,11 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
660
665
  expectEd = 0;
661
666
  yzhtLock: number = 0;
662
667
 
668
+ /** 一体化项目名称 */
669
+ hzcbTxt1: string = "";
670
+ /** 项目名称 */
671
+ hzcbName: string = "";
672
+
663
673
  /** 支付期数 */
664
674
  billSize: number = 0;
665
675
  billStat?: number | undefined = undefined;