@ningboyz/types 1.4.69 → 1.4.71
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
|
@@ -48,6 +48,14 @@ export interface IHznjXmsyItemResponse {
|
|
|
48
48
|
yjffText: string;
|
|
49
49
|
/**制备要求 */
|
|
50
50
|
zbyqText: string;
|
|
51
|
+
/**运算符 */
|
|
52
|
+
operaTxt: string;
|
|
53
|
+
/**判定依据 */
|
|
54
|
+
accorTxt: string;
|
|
55
|
+
/**组字典ID */
|
|
56
|
+
groupDic: number;
|
|
57
|
+
/**运算符2 */
|
|
58
|
+
operaTx2: string;
|
|
51
59
|
}
|
|
52
60
|
|
|
53
61
|
export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
@@ -86,6 +94,10 @@ export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
|
86
94
|
/**组 */
|
|
87
95
|
groupTxt: string = "";
|
|
88
96
|
fromItemMain: number = 0;
|
|
97
|
+
operaTxt: string = "";
|
|
98
|
+
accorTxt: string = "";
|
|
99
|
+
groupDic: number = 0;
|
|
100
|
+
operaTx2: string = "";
|
|
89
101
|
|
|
90
102
|
constructor(data: Partial<IHznjXmsyItemResponse> = {}) {
|
|
91
103
|
if (data) {
|