@ningboyz/types 1.4.33 → 1.4.35
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
|
@@ -62,6 +62,8 @@ export interface IHznjZbjgResponse {
|
|
|
62
62
|
yqsbMain: number;
|
|
63
63
|
/**仪器 */
|
|
64
64
|
yqsbText: string;
|
|
65
|
+
/**正副样结存数是否为0 */
|
|
66
|
+
isFinish: number;
|
|
65
67
|
|
|
66
68
|
coverURL: string;
|
|
67
69
|
touchURL: string;
|
|
@@ -135,6 +137,7 @@ export class THznjZbjgResponse implements IHznjZbjgResponse {
|
|
|
135
137
|
dContact: string = "";
|
|
136
138
|
yqsbMain: number = 0;
|
|
137
139
|
yqsbText: string = "";
|
|
140
|
+
isFinish: number = 0;
|
|
138
141
|
|
|
139
142
|
coverURL: string = "";
|
|
140
143
|
touchURL: string = "";
|
|
@@ -82,6 +82,7 @@ export interface IHznkXmysResponse {
|
|
|
82
82
|
lastMemo: string;
|
|
83
83
|
userName: string;
|
|
84
84
|
userGUID: string;
|
|
85
|
+
fromHznkIndx: number;
|
|
85
86
|
/** 关联的项目indx */
|
|
86
87
|
fromHznkMain: number;
|
|
87
88
|
|
|
@@ -169,6 +170,7 @@ export class THznkXmysResponse implements IHznkXmysResponse {
|
|
|
169
170
|
userName: string = "";
|
|
170
171
|
userGUID: string = "";
|
|
171
172
|
/** 关联的项目indx */
|
|
173
|
+
fromHznkIndx: number = 0;
|
|
172
174
|
fromHznkMain: number = 0;
|
|
173
175
|
listPath: TCore.IPathResponse[] = [];
|
|
174
176
|
listFrom: THznk.IHznkYssqResponse[] = [];
|
|
@@ -61,6 +61,8 @@ export interface IHznkYssqResponse {
|
|
|
61
61
|
ysxqDate: number;
|
|
62
62
|
/**项目层级ID */
|
|
63
63
|
baseLevl: number;
|
|
64
|
+
/**关联项目ID */
|
|
65
|
+
fromHznkIndx: number;
|
|
64
66
|
|
|
65
67
|
coverURL: string;
|
|
66
68
|
touchURL: string;
|
|
@@ -139,6 +141,7 @@ export class THznkYssqResponse implements IHznkYssqResponse {
|
|
|
139
141
|
ysxqDate: number = 0;
|
|
140
142
|
/**项目层级ID */
|
|
141
143
|
baseLevl: number = 0;
|
|
144
|
+
fromHznkIndx: number = 0;
|
|
142
145
|
|
|
143
146
|
coverURL: string = "";
|
|
144
147
|
touchURL: string = "";
|