@ningboyz/types 1.7.181 → 1.7.183
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 +1 -1
- package/src/core/INhtfDataResponse.ts +28 -0
- package/src/core/index.ts +6 -1
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export interface INhtfLineResponse {
|
|
2
|
+
colIndex: number;
|
|
3
|
+
colLabel: string;
|
|
4
|
+
colValue: string;
|
|
5
|
+
typTotal: number;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export class TNhtfLineResponse implements INhtfLineResponse {
|
|
9
|
+
colIndex: number = 0;
|
|
10
|
+
colLabel: string = "";
|
|
11
|
+
colValue: string = "";
|
|
12
|
+
typTotal: number = 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface INhtfDataResponse {
|
|
18
|
+
A0101: string;
|
|
19
|
+
// 身份证
|
|
20
|
+
C0155: string;
|
|
21
|
+
listLine: TNhtfLineResponse[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export class TNhtfDataResponse implements INhtfDataResponse {
|
|
25
|
+
A0101: string = "";
|
|
26
|
+
C0155: string = "";
|
|
27
|
+
listLine: TNhtfLineResponse[] = [];
|
|
28
|
+
}
|
package/src/core/index.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { IUserSizeResponse, TUserSizeResponse } from "./IUserSizeResponse";
|
|
|
29
29
|
import { IUserSzdwResponse, TUserSzdwResponse } from "./IUserSzdwResponse";
|
|
30
30
|
import { IWebSocketResponse, TWebSocketResponse } from "./IWebSocketResponse";
|
|
31
31
|
import { IUserInfoResponse, TUserInfoResponse } from "./IUserInfoResponse";
|
|
32
|
+
import { INhtfLineResponse, TNhtfLineResponse, INhtfDataResponse, TNhtfDataResponse } from "./INhtfDataResponse.ts";
|
|
32
33
|
export {
|
|
33
34
|
// 类
|
|
34
35
|
TCoreValidResponse,
|
|
@@ -63,6 +64,8 @@ export {
|
|
|
63
64
|
TUserSzdwResponse,
|
|
64
65
|
TWebSocketResponse,
|
|
65
66
|
TUserInfoResponse,
|
|
67
|
+
TNhtfLineResponse,
|
|
68
|
+
TNhtfDataResponse,
|
|
66
69
|
// 接口
|
|
67
70
|
type ICoreValidResponse,
|
|
68
71
|
type IDeptBindResponse,
|
|
@@ -95,6 +98,8 @@ export {
|
|
|
95
98
|
type IUserSizeResponse,
|
|
96
99
|
type IUserSzdwResponse,
|
|
97
100
|
type IWebSocketResponse,
|
|
98
|
-
type IUserInfoResponse
|
|
101
|
+
type IUserInfoResponse,
|
|
102
|
+
type INhtfLineResponse,
|
|
103
|
+
type INhtfDataResponse
|
|
99
104
|
};
|
|
100
105
|
|