@ningboyz/types 1.4.138 → 1.4.140
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
|
@@ -24,6 +24,7 @@ export interface IHznjXmjjItemResponse {
|
|
|
24
24
|
fromWhoBuild: number;
|
|
25
25
|
fromUserIndx: number;
|
|
26
26
|
fromHznjXmsy: number;
|
|
27
|
+
notiIndx: number;
|
|
27
28
|
/**组 */
|
|
28
29
|
groupTxt: string;
|
|
29
30
|
|
|
@@ -81,6 +82,7 @@ export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
|
81
82
|
groupTxt: string = "";
|
|
82
83
|
xmsyCode: string = "";
|
|
83
84
|
xmjjStat: number = 0;
|
|
85
|
+
notiIndx: number = 0;
|
|
84
86
|
|
|
85
87
|
constructor(data: Partial<IHznjXmjjItemResponse> = {}) {
|
|
86
88
|
if (data) {
|
|
@@ -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
|
|
|
@@ -62,6 +62,10 @@ export interface IHznjXmjjResponse {
|
|
|
62
62
|
jjfsText: string;
|
|
63
63
|
/**送样人姓名 */
|
|
64
64
|
symcText: string;
|
|
65
|
+
/**样品编号 */
|
|
66
|
+
sampCode: string;
|
|
67
|
+
/**样品名称 */
|
|
68
|
+
sampName: string;
|
|
65
69
|
|
|
66
70
|
coverURL: string;
|
|
67
71
|
touchURL: string;
|
|
@@ -140,6 +144,10 @@ export class THznjXmjjResponse implements Type {
|
|
|
140
144
|
jjfsText: string = "";
|
|
141
145
|
/**送样人姓名 */
|
|
142
146
|
symcText: string = "";
|
|
147
|
+
/**样品编号 */
|
|
148
|
+
sampCode: string = "";
|
|
149
|
+
/**样品名称 */
|
|
150
|
+
sampName: string = "";
|
|
143
151
|
|
|
144
152
|
coverURL: string = "";
|
|
145
153
|
touchURL: string = "";
|