@ningboyz/types 1.3.41 → 1.3.43
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
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
|
|
3
|
+
export interface IHznjZblrItemResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
zblrIndx: number;
|
|
7
|
+
idEntity: number;
|
|
8
|
+
dataStat: number;
|
|
9
|
+
dataHide: number;
|
|
10
|
+
dataOrdr: number;
|
|
11
|
+
dataFrom: number;
|
|
12
|
+
dataDate: number;
|
|
13
|
+
dataTime: number;
|
|
14
|
+
createBy: string;
|
|
15
|
+
createAt: number;
|
|
16
|
+
updateBy: string;
|
|
17
|
+
updateAt: number;
|
|
18
|
+
deleteBy: string;
|
|
19
|
+
deleteAt: number;
|
|
20
|
+
queuesBy: number;
|
|
21
|
+
/**样品数量 */
|
|
22
|
+
getCount: number;
|
|
23
|
+
/**制备样品编号 */
|
|
24
|
+
itemCode: string;
|
|
25
|
+
/**制备状态 */
|
|
26
|
+
zbztMain: number;
|
|
27
|
+
/**制备状态名称 */
|
|
28
|
+
zbztText: string;
|
|
29
|
+
fromWhoBuild: number;
|
|
30
|
+
fromUserIndx: number;
|
|
31
|
+
fromNotiItem: number;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class THznjZblrItemResponse implements IHznjZblrItemResponse {
|
|
35
|
+
whoBuild: number = 0;
|
|
36
|
+
userIndx: number = 0;
|
|
37
|
+
zblrIndx: number = 0;
|
|
38
|
+
idEntity: number = 0;
|
|
39
|
+
dataStat: number = 0;
|
|
40
|
+
dataHide: number = 0;
|
|
41
|
+
dataOrdr: number = 0;
|
|
42
|
+
dataFrom: number = 0;
|
|
43
|
+
dataDate: number = 0;
|
|
44
|
+
dataTime: number = 0;
|
|
45
|
+
createBy: string = "";
|
|
46
|
+
createAt: number = 0;
|
|
47
|
+
updateBy: string = "";
|
|
48
|
+
updateAt: number = 0;
|
|
49
|
+
deleteBy: string = "";
|
|
50
|
+
deleteAt: number = 0;
|
|
51
|
+
queuesBy: number = 0;
|
|
52
|
+
getCount: number = 0;
|
|
53
|
+
itemCode: string = "";
|
|
54
|
+
zbztMain: number = 0;
|
|
55
|
+
zbztText: string = "";
|
|
56
|
+
fromWhoBuild: number = 0;
|
|
57
|
+
fromUserIndx: number = 0;
|
|
58
|
+
fromNotiItem: number = 0;
|
|
59
|
+
|
|
60
|
+
constructor(data: Partial<IHznjZblrItemResponse> = {}) {
|
|
61
|
+
if (data) {
|
|
62
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -77,6 +77,7 @@ export interface IHznjZblrResponse {
|
|
|
77
77
|
/**附件 */
|
|
78
78
|
listPath: TCore.IPathResponse[];
|
|
79
79
|
listBill: THznj.IHznjZblrBillResponse[];
|
|
80
|
+
listItem: THznj.IHznjZblrItemResponse[];
|
|
80
81
|
/** 关联通知 */
|
|
81
82
|
listFrom: THznj.IHznjNotiResponse[];
|
|
82
83
|
}
|
|
@@ -146,6 +147,7 @@ export class THznjZblrResponse implements IHznjZblrResponse {
|
|
|
146
147
|
|
|
147
148
|
listPath: TCore.IPathResponse[] = [];
|
|
148
149
|
listBill: THznj.IHznjZblrBillResponse[] = [];
|
|
150
|
+
listItem: THznj.IHznjZblrItemResponse[] = [];
|
|
149
151
|
listFrom: THznj.IHznjNotiResponse[] = [];
|
|
150
152
|
|
|
151
153
|
constructor(data: Partial<IHznjZblrResponse> = {}) {
|
package/src/hznj/index.ts
CHANGED
|
@@ -20,6 +20,7 @@ import { THznjNotiBillResponse, IHznjNotiBillResponse } from "./IHznjNotiBillRes
|
|
|
20
20
|
//#zblr
|
|
21
21
|
import { THznjZblrResponse, IHznjZblrResponse } from "./IHznjZblrResponse";
|
|
22
22
|
import { THznjZblrBillResponse, IHznjZblrBillResponse } from "./IHznjZblrBillResponse";
|
|
23
|
+
import { THznjZblrItemResponse, IHznjZblrItemResponse } from "./IHznjZblrItemResponse";
|
|
23
24
|
//#zbly
|
|
24
25
|
import { THznjZblyResponse, IHznjZblyResponse } from "./IHznjZblyResponse";
|
|
25
26
|
import { THznjZblyBillResponse, IHznjZblyBillResponse } from "./IHznjZblyBillResponse";
|
|
@@ -52,6 +53,7 @@ export {
|
|
|
52
53
|
THznjNotiBillResponse,
|
|
53
54
|
THznjZblrResponse,
|
|
54
55
|
THznjZblrBillResponse,
|
|
56
|
+
THznjZblrItemResponse,
|
|
55
57
|
THznjZblyResponse,
|
|
56
58
|
THznjZblyBillResponse,
|
|
57
59
|
THznjZbjgResponse,
|
|
@@ -77,6 +79,7 @@ export {
|
|
|
77
79
|
type IHznjNotiBillResponse,
|
|
78
80
|
type IHznjZblrResponse,
|
|
79
81
|
type IHznjZblrBillResponse,
|
|
82
|
+
type IHznjZblrItemResponse,
|
|
80
83
|
type IHznjZblyResponse,
|
|
81
84
|
type IHznjZblyBillResponse,
|
|
82
85
|
type IHznjZbjgResponse,
|