@ningboyz/types 1.3.170 → 1.3.171

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.170",
4
+ "version": "1.3.171",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -0,0 +1,36 @@
1
+ import { IRangeVal } from "../card";
2
+ import { TRangeVal } from "../find";
3
+
4
+ export interface IBillFindResponse {
5
+ billCnfg: number;
6
+ aczfZhmc: string;
7
+ aczfKhyh: string;
8
+ aczfYhzh: string;
9
+ acnoZhmc: string;
10
+ acnoKhyh: string;
11
+ acnoYhzh: string;
12
+ billUses: string;
13
+ menuUUID: string;
14
+ billDateRange: IRangeVal;
15
+ outMoneyRange: IRangeVal;
16
+ billCodeRange: IRangeVal;
17
+ }
18
+
19
+ export class TBillFindResponse implements IBillFindResponse {
20
+ billCnfg: number = -1;
21
+ aczfZhmc: string = "";
22
+ aczfKhyh: string = "";
23
+ aczfYhzh: string = "";
24
+ acnoZhmc: string = "";
25
+ acnoKhyh: string = "";
26
+ acnoYhzh: string = "";
27
+ billUses: string = "";
28
+ menuUUID: string = "";
29
+ billDateRange: IRangeVal = new TRangeVal();
30
+ outMoneyRange: IRangeVal = new TRangeVal();
31
+ billCodeRange: IRangeVal = new TRangeVal();
32
+
33
+ public static init() {
34
+ return new TBillFindResponse();
35
+ }
36
+ }
package/src/bill/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { IBillMainResponse, TBillMainResponse } from "./IBillMainResponse";
2
2
  import { IBillCnfgResponse, TBillCnfgResponse } from "./IBillCnfgResponse";
3
+ import { IBillFindResponse, TBillFindResponse } from "./IBillFindResponse";
3
4
 
4
- export { type IBillMainResponse, type IBillCnfgResponse, TBillMainResponse, TBillCnfgResponse };
5
+ export { type IBillMainResponse, type IBillCnfgResponse, type IBillFindResponse, TBillMainResponse, TBillCnfgResponse, TBillFindResponse };
@@ -0,0 +1,11 @@
1
+ export interface IRangeVal {
2
+ useRange: number;
3
+ startVal: number;
4
+ endedVal: number;
5
+ }
6
+
7
+ export class TRangeVal implements IRangeVal {
8
+ useRange: number = 0;
9
+ startVal: number = 0;
10
+ endedVal: number = 0;
11
+ }
@@ -0,0 +1,3 @@
1
+ import { IRangeVal, TRangeVal } from "./IRangeVal";
2
+
3
+ export { type IRangeVal, TRangeVal };
@@ -5,6 +5,8 @@ export interface IHznjBaseItemResponse {
5
5
  userIndx: number;
6
6
  idEntity: number;
7
7
  hznjBase: number;
8
+ /**数据类型 0:检测依据范围 1:检测依据 */
9
+ dataType: number;
8
10
  dataStat: number;
9
11
  dataHide: number;
10
12
  dataOrdr: number;
@@ -48,6 +50,8 @@ export interface IHznjBaseItemResponse {
48
50
  operaTxt: string;
49
51
  /**检出限 */
50
52
  detecVal: string;
53
+ /**判定依据 */
54
+ accorTxt: string;
51
55
  /**关联检测项目ID */
52
56
  fromItemMain: number;
53
57
  }
@@ -57,6 +61,8 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
57
61
  userIndx: number = 0;
58
62
  idEntity: number = 0;
59
63
  hznjBase: number = 0;
64
+ /**数据类型 0:检测依据范围 1:检测依据 */
65
+ dataType: number = 0;
60
66
  dataStat: number = 0;
61
67
  dataHide: number = 0;
62
68
  dataOrdr: number = 0;
@@ -88,6 +94,8 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
88
94
  operaTxt: string = "";
89
95
  /**检出限 */
90
96
  detecVal: string = "";
97
+ /**判定依据 */
98
+ accorTxt: string = "";
91
99
  fromItemMain: number = 0;
92
100
 
93
101
  constructor(data: Partial<IHznjBaseItemResponse> = {}) {
@@ -75,6 +75,8 @@ export interface IHznjBaseResponse {
75
75
  /**附件 */
76
76
  listPath: TCore.IPathResponse[];
77
77
  listItem: THznj.IHznjBaseItemResponse[];
78
+ /**检测依据范围 */
79
+ listRange: THznj.IHznjBaseItemResponse[];
78
80
  }
79
81
 
80
82
  export class THznjBaseResponse implements IHznjBaseResponse {
@@ -143,6 +145,8 @@ export class THznjBaseResponse implements IHznjBaseResponse {
143
145
 
144
146
  listPath: TCore.IPathResponse[] = [];
145
147
  listItem: THznj.IHznjBaseItemResponse[] = [];
148
+ /**检测依据范围 */
149
+ listRange: THznj.IHznjBaseItemResponse[] = [];
146
150
 
147
151
  constructor(data: Partial<IHznjBaseResponse> = {}) {
148
152
  if (data) {
@@ -76,6 +76,8 @@ export interface IHznkDataResponse {
76
76
  medalTyp: number;
77
77
  /**是否主导 */
78
78
  isMaster: number;
79
+ /** 是否备案 */
80
+ isRecord:number
79
81
  /**证书号 */
80
82
  bookCode: string;
81
83
  /**申请国际专利 */
@@ -108,6 +110,10 @@ export interface IHznkDataResponse {
108
110
  hznkSize: number;
109
111
  /**担任职务 */
110
112
  usrTitle: string;
113
+ /**是否备案 0否 1是 */
114
+ isRecorde: number;
115
+ /**关联的知识产权 */
116
+ fromDataIndx: number;
111
117
 
112
118
  /**字典1 */
113
119
  fromDic1: number;
@@ -123,6 +129,8 @@ export interface IHznkDataResponse {
123
129
  fromDic3Text: string;
124
130
  /** 关联的项目indx */
125
131
  fromHznkMain: number;
132
+ /** 关联的知识产权indx */
133
+ fromDataIndx: number;
126
134
  coverURL: string;
127
135
  touchURL: string;
128
136
  unitText: string;
@@ -209,6 +217,7 @@ export class THznkDataResponse implements IHznkDataResponse {
209
217
 
210
218
  medalTyp: number = 0;
211
219
  isMaster: number = 0;
220
+ isRecord: number=0;
212
221
  bookCode: string = "";
213
222
  isPatent: number = 0;
214
223
  nationBy: string = "";
@@ -228,6 +237,12 @@ export class THznkDataResponse implements IHznkDataResponse {
228
237
  fromDic3Text: string = "";
229
238
  /** 关联的项目indx */
230
239
  fromHznkMain: number = 0;
240
+ fromDataIndx: number=0;
241
+
242
+ /**是否备案 0否 1是 */
243
+ isRecorde: number = 0;
244
+ /**关联的知识产权 */
245
+ fromDataIndx: number = 0;
231
246
 
232
247
  coverURL: string = "";
233
248
  touchURL: string = "";
package/src/index.ts CHANGED
@@ -47,6 +47,7 @@ import * as TZfsq from "./zfsq";
47
47
  import * as TVary from "./vary";
48
48
  import * as TResp from "./response";
49
49
  import * as TAxios from "./axios";
50
+ import * as TFind from "./find";
50
51
 
51
52
  export {
52
53
  Const,
@@ -96,6 +97,7 @@ export {
96
97
  TVary,
97
98
  TResp,
98
99
  TAxios,
100
+ TFind,
99
101
  type IAboutConfig,
100
102
  type IBaseConfig,
101
103
  type IBaseResponse,
@@ -1,3 +1,5 @@
1
+ import { IJapzItemResponse } from "./IJapzItemResponse";
2
+
1
3
  export interface IJapzK7kmResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -30,6 +32,9 @@ export interface IJapzK7kmResponse {
30
32
  k7kmKmbm: string;
31
33
  /** 任务名称 */
32
34
  k7kmKmmc: string;
35
+
36
+ /**检测项目 */
37
+ listItem: IJapzItemResponse[];
33
38
  }
34
39
 
35
40
  export class TJapzK7kmResponse implements IJapzK7kmResponse {
@@ -61,4 +66,7 @@ export class TJapzK7kmResponse implements IJapzK7kmResponse {
61
66
  entityID: string = "";
62
67
  k7kmKmbm: string = "";
63
68
  k7kmKmmc: string = "";
69
+
70
+ /**检测项目 */
71
+ listItem: IJapzItemResponse[] = [];
64
72
  }
@@ -1,3 +1,5 @@
1
+ import { TCore } from "..";
2
+
1
3
  export interface IJapzK9kmResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -32,6 +34,8 @@ export interface IJapzK9kmResponse {
32
34
  k9kmKmmc: string;
33
35
 
34
36
  isActive: number;
37
+ /**附件 */
38
+ listPath: TCore.IPathResponse[];
35
39
  }
36
40
 
37
41
  export class TJapzK9kmResponse implements IJapzK9kmResponse {
@@ -64,4 +68,6 @@ export class TJapzK9kmResponse implements IJapzK9kmResponse {
64
68
  k9kmKmbm: string = "";
65
69
  k9kmKmmc: string = "";
66
70
  isActive: number = 0;
71
+
72
+ listPath: TCore.IPathResponse[] = [];
67
73
  }