@ningboyz/types 1.4.187 → 1.4.188
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
|
@@ -50,6 +50,8 @@ export interface IHzcbXmtzResponse {
|
|
|
50
50
|
xmtzUses: string;
|
|
51
51
|
xmtzMemo: string;
|
|
52
52
|
|
|
53
|
+
/** 合同金额 */
|
|
54
|
+
totalVal: number;
|
|
53
55
|
/** 合同计划支付金额 */
|
|
54
56
|
payMoney: number;
|
|
55
57
|
/** 计划申请金额 */
|
|
@@ -135,6 +137,8 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
|
|
|
135
137
|
xmtzUses: string = "";
|
|
136
138
|
xmtzMemo: string = "";
|
|
137
139
|
|
|
140
|
+
/** 合同金额 */
|
|
141
|
+
totalVal: number = 0;
|
|
138
142
|
/** 合同计划支付金额 */
|
|
139
143
|
payMoney: number = 0;
|
|
140
144
|
/** 计划申请金额 */
|