@ningboyz/types 1.7.157 → 1.7.158
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,4 +1,5 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
+
import { IHzcbMainResponse } from "../hzcb";
|
|
2
3
|
|
|
3
4
|
|
|
4
5
|
export interface ICardZcpdBillResponse {
|
|
@@ -55,6 +56,8 @@ export interface ICardZcpdBillResponse {
|
|
|
55
56
|
cardLaidText: string;
|
|
56
57
|
/** 保管人名称 */
|
|
57
58
|
cardKeepText: string;
|
|
59
|
+
|
|
60
|
+
listHzcb: IHzcbMainResponse[];
|
|
58
61
|
}
|
|
59
62
|
|
|
60
63
|
|
|
@@ -113,6 +116,8 @@ export class TCardZcpdBillResponse implements ICardZcpdBillResponse {
|
|
|
113
116
|
/** 保管人名称 */
|
|
114
117
|
cardKeepText: string = "";
|
|
115
118
|
|
|
119
|
+
listHzcb: IHzcbMainResponse[] = [];
|
|
120
|
+
|
|
116
121
|
constructor(card: Partial<ICardZcpdBillResponse> = {}) {
|
|
117
122
|
if (card) {
|
|
118
123
|
_.merge(this, _.pick(card, Object.keys(this)));
|