@ningboyz/types 1.5.96 → 1.5.98

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.5.96",
4
+ "version": "1.5.98",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -233,6 +233,7 @@ export interface IMyoaMainResponse {
233
233
  fField03: number;
234
234
  fField04: number;
235
235
  fField05: number;
236
+ myoaFrom: number;
236
237
  }
237
238
 
238
239
  export class TMyoaMainResponse implements IMyoaMainResponse {
@@ -442,6 +443,8 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
442
443
  fField03: number = 0;
443
444
  fField04: number = 0;
444
445
  fField05: number = 0;
446
+ myoaFrom: number = 0;
447
+
445
448
  constructor(card: keyof IMyoaMainResponse | object) {
446
449
  if (card) {
447
450
  _.merge(this, _.pick(card, Object.keys(this)));