@ningboyz/types 1.7.49 → 1.7.51
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,3 +1,4 @@
|
|
|
1
|
+
import { IGzzdMainResponse } from "../gzzd";
|
|
1
2
|
import { IWlzfBillResponse } from "./IWlzfBillResponse";
|
|
2
3
|
|
|
3
4
|
export interface IWlzfMainResponse {
|
|
@@ -77,6 +78,7 @@ export interface IWlzfMainResponse {
|
|
|
77
78
|
userGUID: string;
|
|
78
79
|
|
|
79
80
|
listBill: IWlzfBillResponse[];
|
|
81
|
+
listGZZD: IGzzdMainResponse[];
|
|
80
82
|
}
|
|
81
83
|
|
|
82
84
|
export class TWlzfMainResponse implements IWlzfMainResponse {
|
|
@@ -156,4 +158,5 @@ export class TWlzfMainResponse implements IWlzfMainResponse {
|
|
|
156
158
|
userGUID: string = "";
|
|
157
159
|
|
|
158
160
|
listBill: IWlzfBillResponse[] = [];
|
|
161
|
+
listGZZD: IGzzdMainResponse[] = [];
|
|
159
162
|
}
|
|
@@ -89,6 +89,10 @@ export interface IZbzbZbflResponse {
|
|
|
89
89
|
zjlyUUID: string;
|
|
90
90
|
zjlyCode: string;
|
|
91
91
|
zjlyName: string;
|
|
92
|
+
zzxsMain: number;
|
|
93
|
+
zzxsUUID: string;
|
|
94
|
+
zzxsCode: string;
|
|
95
|
+
zzxsName: string;
|
|
92
96
|
zjlyText: string;
|
|
93
97
|
kfjMoney: number;
|
|
94
98
|
allEnded: number;
|
|
@@ -229,6 +233,10 @@ export class TZbzbZbflResponse implements IZbzbZbflResponse {
|
|
|
229
233
|
zjlyUUID: string = "";
|
|
230
234
|
zjlyCode: string = "";
|
|
231
235
|
zjlyName: string = "";
|
|
236
|
+
zzxsMain: number = 0;
|
|
237
|
+
zzxsUUID: string = "";
|
|
238
|
+
zzxsCode: string = "";
|
|
239
|
+
zzxsName: string = "";
|
|
232
240
|
zjlyText: string = "";
|
|
233
241
|
kfjMoney: number = 0;
|
|
234
242
|
allEnded: number = 0;
|