@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,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.7.157",
4
+ "version": "1.7.158",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -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)));