@ningboyz/types 1.8.5 → 1.8.7

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.5",
4
+ "version": "1.8.7",
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
+ }
@@ -90,7 +90,8 @@ export interface IHznjMainResponse {
90
90
  bgysMain: number;
91
91
  /**报告样式 */
92
92
  bgysText: string;
93
-
93
+ /** 签发日期 */
94
+ qfrqDate: number;
94
95
  lastDate: number;
95
96
  lastTime: number;
96
97
  flowStat: number;
@@ -175,6 +176,7 @@ export class THznjMainResponse implements IHznjMainResponse {
175
176
  sampName: string = "";
176
177
  bgysMain: number = 0;
177
178
  bgysText: string = "";
179
+ qfrqDate: number = 0;
178
180
 
179
181
  coverURL: string = "";
180
182
  touchURL: string = "";
@@ -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
+ }