@ningboyz/types 1.3.66 → 1.3.68
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
|
@@ -65,6 +65,8 @@ export interface IHznjZbjgItemResponse {
|
|
|
65
65
|
jldwText: string;
|
|
66
66
|
/**样品编号 */
|
|
67
67
|
xmsyCode: string;
|
|
68
|
+
/**制备样品编号 */
|
|
69
|
+
fromItemCode: string;
|
|
68
70
|
}
|
|
69
71
|
|
|
70
72
|
export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
|
|
@@ -116,6 +118,7 @@ export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
|
|
|
116
118
|
jldwText: string = "";
|
|
117
119
|
/**样品编号 */
|
|
118
120
|
xmsyCode: string = "";
|
|
121
|
+
fromItemCode: string = "";
|
|
119
122
|
|
|
120
123
|
constructor(data: Partial<IHznjZbjgItemResponse> = {}) {
|
|
121
124
|
if (data) {
|
|
@@ -44,6 +44,8 @@ export interface IHznjZblrItemResponse {
|
|
|
44
44
|
jldwText: string;
|
|
45
45
|
/**样品编号 */
|
|
46
46
|
xmsyCode: string;
|
|
47
|
+
/**制备样品编号 */
|
|
48
|
+
fromItemCode: string;
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
export class THznjZblrItemResponse implements IHznjZblrItemResponse {
|
|
@@ -87,6 +89,8 @@ export class THznjZblrItemResponse implements IHznjZblrItemResponse {
|
|
|
87
89
|
jldwText: string = "";
|
|
88
90
|
/**样品编号 */
|
|
89
91
|
xmsyCode: string = "";
|
|
92
|
+
/**制备样品编号 */
|
|
93
|
+
fromItemCode: string = "";
|
|
90
94
|
|
|
91
95
|
constructor(data: Partial<IHznjZblrItemResponse> = {}) {
|
|
92
96
|
if (data) {
|
|
@@ -47,6 +47,8 @@ export interface IHznjZblyItemResponse {
|
|
|
47
47
|
jldwText: string;
|
|
48
48
|
/**样品编号 */
|
|
49
49
|
xmsyCode: string;
|
|
50
|
+
/**制备样品编号 */
|
|
51
|
+
fromItemCode: string;
|
|
50
52
|
}
|
|
51
53
|
|
|
52
54
|
export class THznjZblyItemResponse implements IHznjZblyItemResponse {
|
|
@@ -90,6 +92,8 @@ export class THznjZblyItemResponse implements IHznjZblyItemResponse {
|
|
|
90
92
|
jldwText: string = "";
|
|
91
93
|
/**样品编号 */
|
|
92
94
|
xmsyCode: string = "";
|
|
95
|
+
/**制备样品编号 */
|
|
96
|
+
fromItemCode: string = "";
|
|
93
97
|
|
|
94
98
|
constructor(data: Partial<IHznjZblyItemResponse> = {}) {
|
|
95
99
|
if (data) {
|
|
@@ -30,6 +30,8 @@ export interface IHznjZbthItemResponse {
|
|
|
30
30
|
fromZblrItem: number;
|
|
31
31
|
/**关联 hznj_zbjg_item id_entity */
|
|
32
32
|
fromZbjgItem: number;
|
|
33
|
+
/**关联 hznj_zbly_item id_entity */
|
|
34
|
+
fromZblyItem: number;
|
|
33
35
|
|
|
34
36
|
/**制备退还单号 */
|
|
35
37
|
zbthCode: string;
|
|
@@ -45,6 +47,8 @@ export interface IHznjZbthItemResponse {
|
|
|
45
47
|
jldwText: string;
|
|
46
48
|
/**样品编号 */
|
|
47
49
|
xmsyCode: string;
|
|
50
|
+
/**制备样品编号 */
|
|
51
|
+
fromItemCode: string;
|
|
48
52
|
}
|
|
49
53
|
|
|
50
54
|
export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
@@ -73,6 +77,7 @@ export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
|
73
77
|
fromNotiBill: number = 0;
|
|
74
78
|
fromZblrItem: number = 0;
|
|
75
79
|
fromZbjgItem: number = 0;
|
|
80
|
+
fromZblyItem: number = 0;
|
|
76
81
|
|
|
77
82
|
/**制备单号 */
|
|
78
83
|
zbthCode: string = "";
|
|
@@ -88,4 +93,5 @@ export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
|
88
93
|
jldwText: string = "";
|
|
89
94
|
/**样品编号 */
|
|
90
95
|
xmsyCode: string = "";
|
|
96
|
+
fromItemCode: string = "";
|
|
91
97
|
}
|