@ningboyz/types 1.3.6 → 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.6",
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,6 +72,7 @@ export interface IVaryMainResponse {
72
72
  listSQBM: TCore.IDeptResponse[];
73
73
  listSQYH: TCore.IUserResponse[];
74
74
  listBill: TVary.IVaryBillResponse[];
75
+ listFrom: THznk.IHznkMainResponse[];
75
76
  }
76
77
 
77
78
  export class TVaryMainResponse implements IVaryMainResponse {
@@ -142,6 +143,7 @@ export class TVaryMainResponse implements IVaryMainResponse {
142
143
  listSQBM: TCore.IDeptResponse[] = [];
143
144
  listSQYH: TCore.IUserResponse[] = [];
144
145
  listBill: TVary.IVaryBillResponse[] = [];
146
+ listFrom: THznk.IHznkMainResponse[] = [];
145
147
 
146
148
 
147
149
  constructor(data: Partial<IVaryMainResponse> = {}) {