@ningboyz/types 1.8.6 → 1.8.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.8.6",
4
+ "version": "1.8.8",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -0,0 +1,9 @@
1
+ import { IDictResponse } from "./IDictResponse";
2
+
3
+ export interface IDeptFindResponse {
4
+ listType: IDictResponse[];
5
+ }
6
+
7
+ export class TDeptFindResponse implements IDeptFindResponse {
8
+ listType: IDictResponse[] = [];
9
+ }
@@ -1,3 +1,5 @@
1
+ import { IYzpzK0kmResponseDictPara, TYzpzK0kmResponseDictPara } from "./IYzpzK0kmResponseDictPara";
2
+
1
3
  export interface IYzpzK0kmResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -33,6 +35,8 @@ export interface IYzpzK0kmResponse {
33
35
  usesDept: number;
34
36
  usesYshz: number;
35
37
  usesYsfx: number;
38
+ k0kmPara: string;
39
+ k0kmParaConv: IYzpzK0kmResponseDictPara;
36
40
  }
37
41
 
38
42
  export class TYzpzK0kmResponse implements IYzpzK0kmResponse {
@@ -70,4 +74,6 @@ export class TYzpzK0kmResponse implements IYzpzK0kmResponse {
70
74
  usesDept: number = 0;
71
75
  usesYshz: number = 0;
72
76
  usesYsfx: number = 0;
77
+ k0kmPara: string = "";
78
+ k0kmParaConv: IYzpzK0kmResponseDictPara = new TYzpzK0kmResponseDictPara();
73
79
  }
@@ -0,0 +1,8 @@
1
+ export interface IYzpzK0kmResponseDictPara {
2
+ /** 相关联部门类型的筛选 */
3
+ deptTypeList: number[];
4
+ }
5
+
6
+ export class TYzpzK0kmResponseDictPara implements IYzpzK0kmResponseDictPara {
7
+ deptTypeList: number[] = [];
8
+ }