@ningboyz/types 1.4.8 → 1.4.10
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
|
@@ -68,6 +68,10 @@ export interface IHznjMainResponse {
|
|
|
68
68
|
wContact: string;
|
|
69
69
|
/**联系方式 */
|
|
70
70
|
dContact: string;
|
|
71
|
+
/**检测报告生成状态 (0:未生成;1:已生成) */
|
|
72
|
+
jcbgStat: number;
|
|
73
|
+
/**检测报告编码 */
|
|
74
|
+
jcbgCode: string;
|
|
71
75
|
|
|
72
76
|
coverURL: string;
|
|
73
77
|
touchURL: string;
|
|
@@ -142,6 +146,10 @@ export class THznjMainResponse implements IHznjMainResponse {
|
|
|
142
146
|
itemText: string = "";
|
|
143
147
|
wContact: string = "";
|
|
144
148
|
dContact: string = "";
|
|
149
|
+
/**检测报告生成状态 (0:未生成;1:已生成) */
|
|
150
|
+
jcbgStat: number = 0;
|
|
151
|
+
/**检测报告编码 */
|
|
152
|
+
jcbgCode: string = "";
|
|
145
153
|
|
|
146
154
|
coverURL: string = "";
|
|
147
155
|
touchURL: string = "";
|