@ningboyz/types 1.4.169 → 1.4.170

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.169",
4
+ "version": "1.4.170",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -150,4 +150,6 @@ export enum TButtonType {
150
150
  cancelBook = "cancelBook",
151
151
  /** 上传附件 */
152
152
  uploadFile = "uploadFile",
153
+ /** 同步浙政钉 */
154
+ syncZzding = "syncZzding",
153
155
  }
@@ -48,6 +48,10 @@ export interface IHzcbNdjhBillResponse {
48
48
  fromHzcbIndx: number;
49
49
  /**关联地块id */
50
50
  fromNodeIndx: number;
51
+ /**土地设施面积 */
52
+ ndjhTdmj: number;
53
+ /**分组id */
54
+ teamUUID: string;
51
55
  }
52
56
 
53
57
  export class THzcbNdjhBillResponse implements IHzcbNdjhBillResponse {
@@ -86,4 +90,8 @@ export class THzcbNdjhBillResponse implements IHzcbNdjhBillResponse {
86
90
  fromUserIndx: number = 0;
87
91
  fromHzcbIndx: number = 0;
88
92
  fromNodeIndx: number = 0;
93
+ /**土地设施面积 */
94
+ ndjhTdmj: number = 0;
95
+ /**分组id */
96
+ teamUUID: string = "";
89
97
  }