@ningboyz/types 1.4.124 → 1.4.126
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {THznj, TCore, TStim} from "..";
|
|
1
|
+
import { THznj, TCore, TStim } from "..";
|
|
2
2
|
import _ from "lodash";
|
|
3
3
|
import { TFlowDataResponse } from "../flow";
|
|
4
4
|
|
|
@@ -74,6 +74,10 @@ export interface IHznjMainResponse {
|
|
|
74
74
|
jcbgCode: string;
|
|
75
75
|
/**检测地点 */
|
|
76
76
|
jcddText: string;
|
|
77
|
+
/**抽样地点 */
|
|
78
|
+
cAddress: string;
|
|
79
|
+
/**项目备注 */
|
|
80
|
+
baseMemo: string;
|
|
77
81
|
|
|
78
82
|
coverURL: string;
|
|
79
83
|
touchURL: string;
|
|
@@ -153,6 +157,10 @@ export class THznjMainResponse implements Type {
|
|
|
153
157
|
/**检测报告编码 */
|
|
154
158
|
jcbgCode: string = "";
|
|
155
159
|
jcddText: string = "";
|
|
160
|
+
/**抽样地点 */
|
|
161
|
+
cAddress: string = "";
|
|
162
|
+
/**项目备注 */
|
|
163
|
+
baseMemo: string = "";
|
|
156
164
|
|
|
157
165
|
coverURL: string = "";
|
|
158
166
|
touchURL: string = "";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {THznj, TCore, TStim} from "..";
|
|
1
|
+
import { THznj, TCore, TStim } from "..";
|
|
2
2
|
import _ from "lodash";
|
|
3
3
|
import { TFlowDataResponse } from "../flow";
|
|
4
4
|
|
|
@@ -72,6 +72,10 @@ export interface IHznjNotiResponse {
|
|
|
72
72
|
cpbzText: string;
|
|
73
73
|
/**样品制备要求 */
|
|
74
74
|
zbyqText: string;
|
|
75
|
+
/**报告样式 */
|
|
76
|
+
bgysMain: number;
|
|
77
|
+
/**报告样式 */
|
|
78
|
+
bgysText: string;
|
|
75
79
|
|
|
76
80
|
coverURL: string;
|
|
77
81
|
touchURL: string;
|
|
@@ -96,7 +100,7 @@ export interface IHznjNotiResponse {
|
|
|
96
100
|
listFrom: THznj.IHznjXmjjItemResponse[];
|
|
97
101
|
}
|
|
98
102
|
|
|
99
|
-
type Type = IHznjNotiResponse
|
|
103
|
+
type Type = IHznjNotiResponse;
|
|
100
104
|
export class THznjNotiResponse implements IHznjNotiResponse {
|
|
101
105
|
whoBuild: number = 0;
|
|
102
106
|
userIndx: number = 0;
|
|
@@ -158,6 +162,10 @@ export class THznjNotiResponse implements IHznjNotiResponse {
|
|
|
158
162
|
cpbzText: string = "";
|
|
159
163
|
/**样品制备要求 */
|
|
160
164
|
zbyqText: string = "";
|
|
165
|
+
/**报告样式 */
|
|
166
|
+
bgysMain: number = 0;
|
|
167
|
+
/**报告样式 */
|
|
168
|
+
bgysText: string = "";
|
|
161
169
|
|
|
162
170
|
coverURL: string = "";
|
|
163
171
|
touchURL: string = "";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {THznk, TCore, TStim} from "..";
|
|
1
|
+
import { THznk, TCore, TStim } from "..";
|
|
2
2
|
import _ from "lodash";
|
|
3
3
|
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
4
4
|
|
|
@@ -72,6 +72,10 @@ export interface IHznkDataResponse {
|
|
|
72
72
|
wContact: string;
|
|
73
73
|
/**联系方式 */
|
|
74
74
|
dContact: string;
|
|
75
|
+
/**权利人 */
|
|
76
|
+
rightTxt: string;
|
|
77
|
+
/**数据来源 */
|
|
78
|
+
fromText: string;
|
|
75
79
|
|
|
76
80
|
/**荣誉类型|知识产权类型 */
|
|
77
81
|
medalTyp: number;
|
|
@@ -242,6 +246,8 @@ export class THznkDataResponse implements Type {
|
|
|
242
246
|
hznkMemo: string = "";
|
|
243
247
|
wContact: string = "";
|
|
244
248
|
dContact: string = "";
|
|
249
|
+
rightTxt: string = "";
|
|
250
|
+
fromText: string = "";
|
|
245
251
|
|
|
246
252
|
medalTyp: number = 0;
|
|
247
253
|
isMaster: number = 0;
|