@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
package/src/enums/btnMode.ts
CHANGED
|
@@ -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
|
}
|