@ningboyz/types 1.5.65 → 1.5.67

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.65",
4
+ "version": "1.5.67",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -19,6 +19,7 @@ export interface IDictResponseDictPara {
19
19
  * 以上配置只能配置一个
20
20
  * */
21
21
  change: string[];
22
+ list: Record<string, string | number>[];
22
23
  noChange: string[];
23
24
  code: string;
24
25
  /** 附件归属 */
@@ -59,6 +60,7 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
59
60
  show: boolean = false;
60
61
  gdzc: boolean = false;
61
62
  change: string[] = [];
63
+ list: Record<string, string | number>[] = [];
62
64
  pathType: string = "";
63
65
  noChange: string[] = [];
64
66
  unused: number = 0;
@@ -166,4 +166,6 @@ export enum TButtonType {
166
166
  reviewContract = "reviewContract",
167
167
  /** 查看账单 */
168
168
  checkBill = "checkBill",
169
+ /** 异常处理 */
170
+ exceptionHandling = "exceptionHandling",
169
171
  }
@@ -227,6 +227,12 @@ export interface IMyoaMainResponse {
227
227
  bField05: number;
228
228
  // 是否骑缝章
229
229
  dzyzQife: number;
230
+
231
+ fField01: number;
232
+ fField02: number;
233
+ fField03: number;
234
+ fField04: number;
235
+ fField05: number;
230
236
  }
231
237
 
232
238
  export class TMyoaMainResponse implements IMyoaMainResponse {
@@ -430,6 +436,12 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
430
436
  bField03: number = 0;
431
437
  bField04: number = 0;
432
438
  bField05: number = 0;
439
+
440
+ fField01: number = 0;
441
+ fField02: number = 0;
442
+ fField03: number = 0;
443
+ fField04: number = 0;
444
+ fField05: number = 0;
433
445
  constructor(card: keyof IMyoaMainResponse | object) {
434
446
  if (card) {
435
447
  _.merge(this, _.pick(card, Object.keys(this)));