@ningboyz/types 1.4.72 → 1.4.74
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
|
@@ -90,6 +90,17 @@ export interface IHznjNotiBillResponse {
|
|
|
90
90
|
/**制备要求 */
|
|
91
91
|
zbyqText: string;
|
|
92
92
|
|
|
93
|
+
/**组字典ID */
|
|
94
|
+
groupDic: number;
|
|
95
|
+
/**运算符 */
|
|
96
|
+
operaTxt: string;
|
|
97
|
+
/**运算符2 */
|
|
98
|
+
operaTx2: string;
|
|
99
|
+
/**检出限 */
|
|
100
|
+
detecVal: string;
|
|
101
|
+
/**判定依据 */
|
|
102
|
+
accorTxt: string;
|
|
103
|
+
|
|
93
104
|
fromMotiCode: string;
|
|
94
105
|
fromSqyhText: string;
|
|
95
106
|
fromSqbmText: string;
|
|
@@ -206,6 +217,17 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
206
217
|
flowMain: number = 0;
|
|
207
218
|
flowNode: number = 0;
|
|
208
219
|
|
|
220
|
+
/**组字典ID */
|
|
221
|
+
groupDic: number = 0;
|
|
222
|
+
/**运算符 */
|
|
223
|
+
operaTxt: string = "";
|
|
224
|
+
/**运算符2 */
|
|
225
|
+
operaTx2: string = "";
|
|
226
|
+
/**检出限 */
|
|
227
|
+
detecVal: string = "";
|
|
228
|
+
/**判定依据 */
|
|
229
|
+
accorTxt: string = "";
|
|
230
|
+
|
|
209
231
|
constructor(data: Partial<IHznjNotiBillResponse> = {}) {
|
|
210
232
|
if (data) {
|
|
211
233
|
_.merge(this, _.pick(data, Object.keys(this)));
|