@ningboyz/types 1.2.2 → 1.2.4
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
|
@@ -42,6 +42,9 @@ export interface IHzcbXmtzBillResponse {
|
|
|
42
42
|
qtMoney1: number;
|
|
43
43
|
qtMoney2: number;
|
|
44
44
|
qtMoney3: number;
|
|
45
|
+
qtMoney4: number;
|
|
46
|
+
qtMoney5: number;
|
|
47
|
+
qtMoney6: number;
|
|
45
48
|
}
|
|
46
49
|
|
|
47
50
|
export class THzcbXmtzBillResponse implements IHzcbXmtzBillResponse {
|
|
@@ -88,4 +91,7 @@ export class THzcbXmtzBillResponse implements IHzcbXmtzBillResponse {
|
|
|
88
91
|
qtMoney1: number = 0;
|
|
89
92
|
qtMoney2: number = 0;
|
|
90
93
|
qtMoney3: number = 0;
|
|
94
|
+
qtMoney4: number = 0;
|
|
95
|
+
qtMoney5: number = 0;
|
|
96
|
+
qtMoney6: number = 0;
|
|
91
97
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
1
2
|
import { Const } from "../..";
|
|
2
3
|
import { IPathResponse, IUnitResponse } from "../core";
|
|
3
4
|
import { TFlowDataResponse } from "../flow";
|
|
4
5
|
import { IYzhtBillResponse } from "../yzht";
|
|
5
|
-
import _ from "lodash";
|
|
6
6
|
import { IHzcbMainResponse } from "./IHzcbMainResponse";
|
|
7
7
|
|
|
8
8
|
export interface IHzcbXmykResponse {
|
|
@@ -45,6 +45,10 @@ export interface IHzcbXmykResponse {
|
|
|
45
45
|
sqyhText: string;
|
|
46
46
|
xmykCode: string;
|
|
47
47
|
xmykName: string;
|
|
48
|
+
/** 申拨数 */
|
|
49
|
+
aplMoney: number;
|
|
50
|
+
/** 指标数 */
|
|
51
|
+
getMoney: number;
|
|
48
52
|
xmykDate: number;
|
|
49
53
|
xmykStat: number;
|
|
50
54
|
xmykUses: string;
|
|
@@ -66,7 +70,7 @@ export interface IHzcbXmykResponse {
|
|
|
66
70
|
userName: string;
|
|
67
71
|
userGUID: string;
|
|
68
72
|
hzcbName: string;
|
|
69
|
-
|
|
73
|
+
|
|
70
74
|
listFrom: IHzcbMainResponse[];
|
|
71
75
|
listUnit: IUnitResponse[];
|
|
72
76
|
listBill: IYzhtBillResponse[];
|
|
@@ -113,6 +117,10 @@ export class THzcbXmykResponse implements IHzcbXmykResponse {
|
|
|
113
117
|
sqyhText: string = "";
|
|
114
118
|
xmykCode: string = "";
|
|
115
119
|
xmykName: string = "";
|
|
120
|
+
/** 申拨数 */
|
|
121
|
+
aplMoney: number = 0;
|
|
122
|
+
/** 指标数 */
|
|
123
|
+
getMoney: number = 0;
|
|
116
124
|
xmykDate: number = 0;
|
|
117
125
|
xmykStat: number = 0;
|
|
118
126
|
xmykUses: string = "";
|