@ningboyz/types 1.3.32 → 1.3.34
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
package/src/const/const_hznk.ts
CHANGED
|
@@ -266,3 +266,4 @@ export const CONST_SYS_TYPEU_甬农检_制备状态 = "甬农检-制备状态";
|
|
|
266
266
|
export const CONST_SYS_TYPEU_甬农检_检验状态 = "甬农检-检验状态";
|
|
267
267
|
export const CONST_SYS_TYPEU_甬农检_样品类型 = "甬农检-样品类型";
|
|
268
268
|
export const CONST_SYS_TYPEU_甬农检_样品交接_样品状态 = "甬农检-样品交接-样品状态";
|
|
269
|
+
export const CONST_SYS_TYPEU_甬农检_仪器名称_型号_编号 = "甬农检-仪器名称、型号、编号";
|
|
@@ -51,6 +51,10 @@ export interface IHzcbMainResponse {
|
|
|
51
51
|
hzcbDdid: number;
|
|
52
52
|
/** 项目性质 */
|
|
53
53
|
hzcbXmxz: number;
|
|
54
|
+
/** 项目性质文本 */
|
|
55
|
+
xmxzText: string;
|
|
56
|
+
/** 项目类型文本 */
|
|
57
|
+
typeText: string;
|
|
54
58
|
hzcbXmgm: number;
|
|
55
59
|
hzcbFglx: number;
|
|
56
60
|
outMoney: number;
|
|
@@ -130,6 +134,8 @@ export interface IHzcbMainResponse {
|
|
|
130
134
|
}
|
|
131
135
|
|
|
132
136
|
export class THzcbMainResponse implements IHzcbMainResponse {
|
|
137
|
+
xmxzText: string = "";
|
|
138
|
+
typeText: string = "";
|
|
133
139
|
whoBuild: number = 0;
|
|
134
140
|
userIndx: number = 0;
|
|
135
141
|
hzcbIndx: number = 0;
|
|
@@ -73,6 +73,8 @@ export interface IHznjNotiResponse {
|
|
|
73
73
|
userGUID: string;
|
|
74
74
|
flowMain: number;
|
|
75
75
|
flowNode: number;
|
|
76
|
+
/**附件 */
|
|
77
|
+
listPath: TCore.IPathResponse[];
|
|
76
78
|
|
|
77
79
|
/**任务通知.拆分 */
|
|
78
80
|
listBill: THznj.IHznjNotiBillResponse[];
|
|
@@ -148,6 +150,8 @@ export class THznjNotiResponse implements IHznjNotiResponse {
|
|
|
148
150
|
listCJBM: TCore.IDeptResponse[] = [];
|
|
149
151
|
listFrom: THznj.IHznjXmjjResponse[] = [];
|
|
150
152
|
|
|
153
|
+
listPath: TCore.IPathResponse[] = [];
|
|
154
|
+
|
|
151
155
|
constructor(data: Partial<IHznjNotiResponse> = {}) {
|
|
152
156
|
if (data) {
|
|
153
157
|
_.merge(this, _.pick(data, Object.keys(this)));
|