@ningboyz/types 1.3.157 → 1.3.159
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
|
@@ -48,6 +48,8 @@ export interface IHznjBaseItemResponse {
|
|
|
48
48
|
operaTxt: string;
|
|
49
49
|
/**检出限 */
|
|
50
50
|
detecVal: string;
|
|
51
|
+
/**关联检测项目ID */
|
|
52
|
+
fromItemMain: number;
|
|
51
53
|
}
|
|
52
54
|
|
|
53
55
|
export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
@@ -86,6 +88,7 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
|
86
88
|
operaTxt: string = "";
|
|
87
89
|
/**检出限 */
|
|
88
90
|
detecVal: string = "";
|
|
91
|
+
fromItemMain: number = 0;
|
|
89
92
|
|
|
90
93
|
constructor(data: Partial<IHznjBaseItemResponse> = {}) {
|
|
91
94
|
if (data) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
-
import {TFlowDataResponse} from "../flow";
|
|
2
|
+
import { TFlowDataResponse } from "../flow";
|
|
3
3
|
|
|
4
4
|
export interface IHznjNotiBillResponse {
|
|
5
5
|
whoBuild: number;
|
|
@@ -82,6 +82,8 @@ export interface IHznjNotiBillResponse {
|
|
|
82
82
|
fromWhoBuild: number;
|
|
83
83
|
fromUserIndx: number;
|
|
84
84
|
fromXmjjItem: number;
|
|
85
|
+
/**关联检测项目ID */
|
|
86
|
+
fromItemMain: number;
|
|
85
87
|
|
|
86
88
|
fromMotiCode: string;
|
|
87
89
|
fromSqyhText: string;
|
|
@@ -170,6 +172,8 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
170
172
|
fromWhoBuild: number = 0;
|
|
171
173
|
fromUserIndx: number = 0;
|
|
172
174
|
fromXmjjItem: number = 0;
|
|
175
|
+
/**关联检测项目ID */
|
|
176
|
+
fromItemMain: number = 0;
|
|
173
177
|
|
|
174
178
|
fromMotiCode: string = "";
|
|
175
179
|
fromSqyhText: string = "";
|