@ningboyz/types 1.3.79 → 1.3.80
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
|
@@ -52,6 +52,8 @@ export interface IHznjXmsyResponse {
|
|
|
52
52
|
xmsyStat: number;
|
|
53
53
|
/** 单据类型/检验类型 */
|
|
54
54
|
xmsyType: number;
|
|
55
|
+
/** 单据类型/检验类型(文本) */
|
|
56
|
+
typeText: string;
|
|
55
57
|
/** 样品编号 */
|
|
56
58
|
xmsyCode: string;
|
|
57
59
|
/** 样品名称 */
|
|
@@ -179,6 +181,7 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
179
181
|
xmsyDate: number = 0;
|
|
180
182
|
xmsyStat: number = 0;
|
|
181
183
|
xmsyType: number = 0;
|
|
184
|
+
typeText: string = "";
|
|
182
185
|
xmsyCode: string = "";
|
|
183
186
|
xmsyName: string = "";
|
|
184
187
|
xmsyUses: string = "";
|