@ningboyz/types 1.1.96 → 1.1.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/index.ts CHANGED
@@ -38,6 +38,7 @@ import * as TCron from "./src/cron";
38
38
  import * as TElem from "./src/elem";
39
39
  import * as TZbzd from "./src/zbzd";
40
40
  import * as TLoad from "./src/load";
41
+ import * as TYzpz from "./src/yzpz";
41
42
 
42
43
  export {
43
44
  Const,
@@ -82,5 +83,6 @@ export {
82
83
  TCron,
83
84
  TElem,
84
85
  TZbzd,
85
- TLoad
86
+ TLoad,
87
+ TYzpz
86
88
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.1.96",
3
+ "version": "1.1.98",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -157,6 +157,10 @@ export interface ISysMenuWithExpdResponse {
157
157
  get4PartText: string;
158
158
  /** 审批流程数据 */
159
159
  flowType: IFlowMainResponse[];
160
+ /** 报销科目分类名称 */
161
+ listGamsText: string;
162
+ /** 报销标准账套名称 */
163
+ listCnfgText: string;
160
164
  }
161
165
 
162
166
  export class TSysMenuWithExpdResponse implements ISysMenuWithExpdResponse {
@@ -310,4 +314,6 @@ export class TSysMenuWithExpdResponse implements ISysMenuWithExpdResponse {
310
314
  get4PartType: IPartResponse[] = [];
311
315
  get4PartText: string = "";
312
316
  flowType: IFlowMainResponse[] = [];
317
+ listGamsText: string = "";
318
+ listCnfgText: string = "";
313
319
  }