@ningboyz/types 1.5.37 → 1.5.39
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
|
@@ -67,6 +67,8 @@ export interface IHznjBillResponse {
|
|
|
67
67
|
yjffText: string;
|
|
68
68
|
/**制备要求 */
|
|
69
69
|
zbyqText: string;
|
|
70
|
+
/**计数方式 */
|
|
71
|
+
jsfsText: string;
|
|
70
72
|
}
|
|
71
73
|
|
|
72
74
|
export class THznjBillResponse implements IHznjBillResponse {
|
|
@@ -114,6 +116,8 @@ export class THznjBillResponse implements IHznjBillResponse {
|
|
|
114
116
|
yjffText: string = "";
|
|
115
117
|
/**制备要求 */
|
|
116
118
|
zbyqText: string = "";
|
|
119
|
+
/**计数方式 */
|
|
120
|
+
jsfsText: string = "";
|
|
117
121
|
|
|
118
122
|
constructor(data: Partial<IHznjBillResponse> = {}) {
|
|
119
123
|
if (data) {
|
|
@@ -53,6 +53,8 @@ export interface IHznjZbthItemResponse {
|
|
|
53
53
|
fromMainCode: string;
|
|
54
54
|
/**制备样品副样编号 */
|
|
55
55
|
fromMinoCode: string;
|
|
56
|
+
/**使用量 */
|
|
57
|
+
sylCount: number;
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
@@ -102,4 +104,6 @@ export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
|
102
104
|
fromMainCode: string = "";
|
|
103
105
|
/**制备样品副样编号 */
|
|
104
106
|
fromMinoCode: string = "";
|
|
107
|
+
/**使用量 */
|
|
108
|
+
sylCount: number = 0;
|
|
105
109
|
}
|