@ningboyz/types 1.3.52 → 1.3.54
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
|
@@ -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)));
|