@ningboyz/types 1.2.67 → 1.2.69

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.2.67",
4
+ "version": "1.2.69",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -186,9 +186,8 @@ export class TBillMainResponse implements IBillMainResponse {
186
186
 
187
187
  typeText: string = "";
188
188
  bankText: string = "";
189
-
190
- constructor(response?: any) {
191
- super();
189
+
190
+ constructor(response: any = {}) {
192
191
  if (response) {
193
192
  _.merge(this, _.pick(response, Object.keys(this)));
194
193
  }