@ningboyz/types 1.4.48 → 1.4.49

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.4.48",
4
+ "version": "1.4.49",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -206,6 +206,12 @@ export interface IMyoaMainResponse {
206
206
  sField03: string;
207
207
  sField04: string;
208
208
  sField05: string;
209
+
210
+ bField01: number;
211
+ bField02: number;
212
+ bField03: number;
213
+ bField04: number;
214
+ bField05: number;
209
215
  // 是否骑缝章
210
216
  dzyzQife: number;
211
217
  }
@@ -392,6 +398,12 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
392
398
  sField04: string = "";
393
399
  sField05: string = "";
394
400
  dzyzQife: number = 0;
401
+
402
+ bField01: number = 0;
403
+ bField02: number = 0;
404
+ bField03: number = 0;
405
+ bField04: number = 0;
406
+ bField05: number = 0;
395
407
  constructor(card: keyof TMyoaMainResponse | object) {
396
408
  if (card) {
397
409
  _.merge(this, _.pick(card, Object.keys(this)));