@ningboyz/types 1.3.7 → 1.3.8

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.3.7",
4
+ "version": "1.3.8",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -21,6 +21,8 @@ export interface IDictResponseDictPara {
21
21
  notRequiredPath: boolean;
22
22
  /** 分值 */
23
23
  fraction: number;
24
+ /** 是否填写付费总额 */
25
+ isPayTotal: number;
24
26
  }
25
27
 
26
28
  export class TDictResponseDictPara implements IDictResponseDictPara {
@@ -1,4 +1,4 @@
1
- import { TCore, TVary } from "..";
1
+ import { TCore, THznk, TVary } from "..";
2
2
  import { TFlowDataResponse } from "../flow";
3
3
  import _ from "lodash";
4
4
 
@@ -72,7 +72,7 @@ export interface IVaryMainResponse {
72
72
  listSQBM: TCore.IDeptResponse[];
73
73
  listSQYH: TCore.IUserResponse[];
74
74
  listBill: TVary.IVaryBillResponse[];
75
- listFrom: TVary.IVaryMainResponse[];
75
+ listFrom: THznk.IHznkMainResponse[];
76
76
  }
77
77
 
78
78
  export class TVaryMainResponse implements IVaryMainResponse {
@@ -143,7 +143,7 @@ export class TVaryMainResponse implements IVaryMainResponse {
143
143
  listSQBM: TCore.IDeptResponse[] = [];
144
144
  listSQYH: TCore.IUserResponse[] = [];
145
145
  listBill: TVary.IVaryBillResponse[] = [];
146
- listFrom: TVary.IVaryMainResponse[] = [];
146
+ listFrom: THznk.IHznkMainResponse[] = [];
147
147
 
148
148
 
149
149
  constructor(data: Partial<IVaryMainResponse> = {}) {