@ningboyz/types 1.3.158 → 1.3.160
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 = "";
|
|
@@ -42,6 +42,7 @@ export interface IHznjXmsyItemResponse {
|
|
|
42
42
|
itemMemo: string;
|
|
43
43
|
/**组 */
|
|
44
44
|
groupTxt: string;
|
|
45
|
+
fromItemMain: number;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
@@ -75,6 +76,7 @@ export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
|
75
76
|
itemMemo: string = "";
|
|
76
77
|
/**组 */
|
|
77
78
|
groupTxt: string = "";
|
|
79
|
+
fromItemMain: number = 0;
|
|
78
80
|
|
|
79
81
|
constructor(data: Partial<IHznjXmsyItemResponse> = {}) {
|
|
80
82
|
if (data) {
|
|
@@ -32,6 +32,9 @@ export interface IHznkFydwItemResponse {
|
|
|
32
32
|
sqbmText: string;
|
|
33
33
|
/**制单日期 */
|
|
34
34
|
fromFydwDate: number;
|
|
35
|
+
/**人员部门 */
|
|
36
|
+
deptMain: number;
|
|
37
|
+
deptName: string;
|
|
35
38
|
}
|
|
36
39
|
|
|
37
40
|
export class THznkFydwItemResponse implements IHznkFydwItemResponse {
|
|
@@ -68,4 +71,7 @@ export class THznkFydwItemResponse implements IHznkFydwItemResponse {
|
|
|
68
71
|
sqbmText: string = "";
|
|
69
72
|
/**制单日期 */
|
|
70
73
|
fromFydwDate: number = 0;
|
|
74
|
+
/**人员部门 */
|
|
75
|
+
deptMain: number = 0;
|
|
76
|
+
deptName: string = "";
|
|
71
77
|
}
|