@ningboyz/types 1.3.4 → 1.3.6
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
|
@@ -66,8 +66,14 @@ export interface IHznjXmsyResponse {
|
|
|
66
66
|
baseCode: string;
|
|
67
67
|
/** 任务名称 */
|
|
68
68
|
k7kmKmmc: string;
|
|
69
|
+
/** 任务名称标识 */
|
|
70
|
+
k7kmKmid: number;
|
|
69
71
|
/** 样品编码 */
|
|
70
72
|
k8kmKmbm: string;
|
|
73
|
+
/** 样品名称 */
|
|
74
|
+
k8kmKmmc: string;
|
|
75
|
+
/** 样品标识 */
|
|
76
|
+
k8kmKmid: number;
|
|
71
77
|
/** 联系人 */
|
|
72
78
|
wContact: string;
|
|
73
79
|
/** 联系方式 */
|
|
@@ -174,7 +180,10 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
174
180
|
hznkBase: number = 0;
|
|
175
181
|
baseCode: string = "";
|
|
176
182
|
k7kmKmmc: string = "";
|
|
183
|
+
k7kmKmid: number = 0;
|
|
177
184
|
k8kmKmbm: string = "";
|
|
185
|
+
k8kmKmmc: string = "";
|
|
186
|
+
k8kmKmid: number = 0;
|
|
178
187
|
wContact: string = "";
|
|
179
188
|
dContact: string = "";
|
|
180
189
|
getCount: number = 0;
|