@ningboyz/types 1.3.51 → 1.3.53
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/conf/IConfig.ts +5 -0
- package/src/hznj/IHznjZblrItemResponse.ts +21 -0
- package/src/index.ts +5 -2
package/package.json
CHANGED
package/src/conf/IConfig.ts
CHANGED
|
@@ -62,9 +62,14 @@ export interface IWtuiConfig {
|
|
|
62
62
|
toolDownLoadData: IToolDownLoadData[];
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
export interface ISsoConfig {
|
|
66
|
+
cwxtURL: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
65
69
|
export interface IConfig {
|
|
66
70
|
baseConfig: IBaseConfig;
|
|
67
71
|
aboutConfig: IAboutConfig;
|
|
68
72
|
pathConfig: IPathConfig;
|
|
69
73
|
wtuiConfig: IWtuiConfig;
|
|
74
|
+
ssoConfig: ISsoConfig;
|
|
70
75
|
}
|
|
@@ -29,6 +29,16 @@ export interface IHznjZblrItemResponse {
|
|
|
29
29
|
fromWhoBuild: number;
|
|
30
30
|
fromUserIndx: number;
|
|
31
31
|
fromNotiItem: number;
|
|
32
|
+
/**制备单号 */
|
|
33
|
+
zblrCode: string;
|
|
34
|
+
/**样品名称 */
|
|
35
|
+
k8kmKmmc: string;
|
|
36
|
+
/**单号 */
|
|
37
|
+
baseCode: string;
|
|
38
|
+
/**数量 */
|
|
39
|
+
useCount: number;
|
|
40
|
+
/**单位 */
|
|
41
|
+
jldwText: string;
|
|
32
42
|
}
|
|
33
43
|
|
|
34
44
|
export class THznjZblrItemResponse implements IHznjZblrItemResponse {
|
|
@@ -57,6 +67,17 @@ export class THznjZblrItemResponse implements IHznjZblrItemResponse {
|
|
|
57
67
|
fromUserIndx: number = 0;
|
|
58
68
|
fromNotiItem: number = 0;
|
|
59
69
|
|
|
70
|
+
/**制备单号 */
|
|
71
|
+
zblrCode: string = "";
|
|
72
|
+
/**样品名称 */
|
|
73
|
+
k8kmKmmc: string = "";
|
|
74
|
+
/**单号 */
|
|
75
|
+
baseCode: string = "";
|
|
76
|
+
/**数量 */
|
|
77
|
+
useCount: number = 0;
|
|
78
|
+
/**单位 */
|
|
79
|
+
jldwText: string = "";
|
|
80
|
+
|
|
60
81
|
constructor(data: Partial<IHznjZblrItemResponse> = {}) {
|
|
61
82
|
if (data) {
|
|
62
83
|
_.merge(this, _.pick(data, Object.keys(this)));
|
package/src/index.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as TBill from "./bill";
|
|
|
5
5
|
import * as TCard from "./card";
|
|
6
6
|
import * as TCggz from "./cggz";
|
|
7
7
|
import * as TCnfg from "./conf";
|
|
8
|
-
import { IAboutConfig, IBaseConfig, IConfig, IPathConfig } from "./conf/IConfig";
|
|
8
|
+
import { IAboutConfig, IBaseConfig, IConfig, IPathConfig, IWtuiConfig, IToolDownLoadData, ISsoConfig } from "./conf/IConfig";
|
|
9
9
|
import * as Const from "./const";
|
|
10
10
|
import * as TCore from "./core";
|
|
11
11
|
import * as TCron from "./cron";
|
|
@@ -100,5 +100,8 @@ export {
|
|
|
100
100
|
type IBaseConfig,
|
|
101
101
|
type IBaseResponse,
|
|
102
102
|
type IConfig,
|
|
103
|
-
type IPathConfig
|
|
103
|
+
type IPathConfig,
|
|
104
|
+
type ISsoConfig,
|
|
105
|
+
type IWtuiConfig,
|
|
106
|
+
type IToolDownLoadData
|
|
104
107
|
};
|