@ningboyz/types 1.4.169 → 1.4.171
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
|
@@ -333,7 +333,7 @@ export class TDataResponse implements Type {
|
|
|
333
333
|
travel.flowNode = card.flowNode;
|
|
334
334
|
travel.billUUID = card.entityID;
|
|
335
335
|
travel.billMain = card.dataIndx;
|
|
336
|
-
travel.billCode = card.
|
|
336
|
+
travel.billCode = card.billCode;
|
|
337
337
|
travel.mastName = card.mastName;
|
|
338
338
|
travel.createBy = card.createBy;
|
|
339
339
|
travel.menuUUID = card.menuUUID;
|
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
|
}
|