@ningboyz/types 1.7.48 → 1.7.50
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
|
}
|