@ningboyz/types 1.3.96 → 1.3.98
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 +1 -1
- package/src/card/ICardDataResponse.ts +4 -1
- package/src/hzcb/IHzcbMainResponse.ts +4 -0
- package/src/hznj/IHznjDzqrResponse.ts +11 -0
- package/src/hznj/IHznjNotiBillResponse.ts +46 -0
- package/src/hznj/IHznjRwqxResponse.ts +10 -0
- package/src/hznj/IHznjXmjjItemResponse.ts +2 -0
- package/src/hznk/IHznkNoteResponse.ts +4 -0
- package/src/myoa/IMyoaMainResponse.ts +4 -0
package/package.json
CHANGED
|
@@ -103,6 +103,8 @@ export interface IDataResponse {
|
|
|
103
103
|
|
|
104
104
|
autoTbxz: number; //#保险险种
|
|
105
105
|
autoTbxzText: string;
|
|
106
|
+
/** 送审/审核时间 */
|
|
107
|
+
lastTime: number;
|
|
106
108
|
|
|
107
109
|
billStat: number;
|
|
108
110
|
flowMain: number;
|
|
@@ -215,7 +217,8 @@ export class TDataResponse implements IDataResponse {
|
|
|
215
217
|
cardExid: number = 0;
|
|
216
218
|
autoTbdw: number = 0;
|
|
217
219
|
autoType: number = 0;
|
|
218
|
-
|
|
220
|
+
/** 送审/审核时间 */
|
|
221
|
+
lastTime: number = 0;
|
|
219
222
|
autoCpbh: string = "";
|
|
220
223
|
cardCode: string = "";
|
|
221
224
|
cardName: string = "";
|
|
@@ -140,6 +140,8 @@ export interface IHzcbMainResponse {
|
|
|
140
140
|
nodeText: string;
|
|
141
141
|
/**照片 */
|
|
142
142
|
hzcbCoverURL: string;
|
|
143
|
+
/** 送审/审核时间 */
|
|
144
|
+
lastTime: number;
|
|
143
145
|
|
|
144
146
|
/** 附件 */
|
|
145
147
|
listPath: TCore.IPathResponse[];
|
|
@@ -265,6 +267,8 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
265
267
|
finishEd: number = 0;
|
|
266
268
|
nodeText: string = "";
|
|
267
269
|
hzcbCoverURL: string = "";
|
|
270
|
+
/** 送审/审核时间 */
|
|
271
|
+
lastTime: number = 0;
|
|
268
272
|
|
|
269
273
|
listPath: TCore.IPathResponse[] = [];
|
|
270
274
|
listZJLY: THzcb.IHzcbZjlyResponse[] = [];
|
|
@@ -61,6 +61,12 @@ export interface IHznjDzqrResponse {
|
|
|
61
61
|
/**到账金额 */
|
|
62
62
|
dzMoney1: number;
|
|
63
63
|
|
|
64
|
+
//#虚拟字段
|
|
65
|
+
/**收样单类型 */
|
|
66
|
+
fromDataType: number;
|
|
67
|
+
/**样品名称 */
|
|
68
|
+
fromK8kmKmmc: string;
|
|
69
|
+
|
|
64
70
|
coverURL: string;
|
|
65
71
|
touchURL: string;
|
|
66
72
|
unitText: string;
|
|
@@ -132,6 +138,11 @@ export class THznjDzqrResponse implements IHznjDzqrResponse {
|
|
|
132
138
|
payTotal: number = 0;
|
|
133
139
|
dzMoney1: number = 0;
|
|
134
140
|
|
|
141
|
+
/**收样单类型 */
|
|
142
|
+
fromDataType: number = 0;
|
|
143
|
+
/**样品名称 */
|
|
144
|
+
fromK8kmKmmc: string = "";
|
|
145
|
+
|
|
135
146
|
coverURL: string = "";
|
|
136
147
|
touchURL: string = "";
|
|
137
148
|
unitText: string = "";
|
|
@@ -81,6 +81,29 @@ export interface IHznjNotiBillResponse {
|
|
|
81
81
|
fromWhoBuild: number;
|
|
82
82
|
fromUserIndx: number;
|
|
83
83
|
fromXmjjItem: number;
|
|
84
|
+
|
|
85
|
+
fromMotiCode: string;
|
|
86
|
+
fromSqyhText: string;
|
|
87
|
+
fromSqbmText: string;
|
|
88
|
+
fromNotiDate: number;
|
|
89
|
+
fromNotiMemo: string;
|
|
90
|
+
cpbzText: string;
|
|
91
|
+
zbyqText: string;
|
|
92
|
+
|
|
93
|
+
coverURL: string;
|
|
94
|
+
touchURL: string;
|
|
95
|
+
unitText: string;
|
|
96
|
+
sourceDW: string;
|
|
97
|
+
|
|
98
|
+
lastDate: number;
|
|
99
|
+
lastTime: number;
|
|
100
|
+
flowStat: number;
|
|
101
|
+
didFirst: number;
|
|
102
|
+
lastMemo: string;
|
|
103
|
+
userName: string;
|
|
104
|
+
userGUID: string;
|
|
105
|
+
flowMain: number;
|
|
106
|
+
flowNode: number;
|
|
84
107
|
}
|
|
85
108
|
|
|
86
109
|
export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
@@ -146,6 +169,29 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
146
169
|
fromUserIndx: number = 0;
|
|
147
170
|
fromXmjjItem: number = 0;
|
|
148
171
|
|
|
172
|
+
fromMotiCode: string = "";
|
|
173
|
+
fromSqyhText: string = "";
|
|
174
|
+
fromSqbmText: string = "";
|
|
175
|
+
fromNotiDate: number = 0;
|
|
176
|
+
fromNotiMemo: string = "";
|
|
177
|
+
cpbzText: string = "";
|
|
178
|
+
zbyqText: string = "";
|
|
179
|
+
|
|
180
|
+
coverURL: string = "";
|
|
181
|
+
touchURL: string = "";
|
|
182
|
+
unitText: string = "";
|
|
183
|
+
sourceDW: string = "";
|
|
184
|
+
|
|
185
|
+
lastDate: number = 0;
|
|
186
|
+
lastTime: number = 0;
|
|
187
|
+
flowStat: number = 0;
|
|
188
|
+
didFirst: number = 0;
|
|
189
|
+
lastMemo: string = "";
|
|
190
|
+
userName: string = "";
|
|
191
|
+
userGUID: string = "";
|
|
192
|
+
flowMain: number = 0;
|
|
193
|
+
flowNode: number = 0;
|
|
194
|
+
|
|
149
195
|
constructor(data: Partial<IHznjNotiBillResponse> = {}) {
|
|
150
196
|
if (data) {
|
|
151
197
|
_.merge(this, _.pick(data, Object.keys(this)));
|
|
@@ -56,6 +56,11 @@ export interface IHznjRwqxResponse {
|
|
|
56
56
|
rwqxUses: string;
|
|
57
57
|
/**备注说明 */
|
|
58
58
|
rwqxMemo: string;
|
|
59
|
+
//#虚拟字段
|
|
60
|
+
/**收样单类型 */
|
|
61
|
+
fromDataType: number;
|
|
62
|
+
/**样品名称 */
|
|
63
|
+
fromK8kmKmmc: string;
|
|
59
64
|
|
|
60
65
|
coverURL: string;
|
|
61
66
|
touchURL: string;
|
|
@@ -126,6 +131,11 @@ export class THznjRwqxResponse implements IHznjRwqxResponse {
|
|
|
126
131
|
rwqxUses: string = "";
|
|
127
132
|
rwqxMemo: string = "";
|
|
128
133
|
|
|
134
|
+
/**收样单类型 */
|
|
135
|
+
fromDataType: number = 0;
|
|
136
|
+
/**样品名称 */
|
|
137
|
+
fromK8kmKmmc: string = "";
|
|
138
|
+
|
|
129
139
|
coverURL: string = "";
|
|
130
140
|
touchURL: string = "";
|
|
131
141
|
unitText: string = "";
|
|
@@ -42,6 +42,7 @@ export interface IHznjXmjjItemResponse {
|
|
|
42
42
|
* 单位
|
|
43
43
|
* */
|
|
44
44
|
jldwText: string; //虚拟字段
|
|
45
|
+
xmjjStat: number;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
@@ -74,6 +75,7 @@ export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
|
74
75
|
jldwText: string = "";
|
|
75
76
|
/**组 */
|
|
76
77
|
groupTxt: string = "";
|
|
78
|
+
xmjjStat: number = 0;
|
|
77
79
|
|
|
78
80
|
constructor(data: Partial<IHznjXmjjItemResponse> = {}) {
|
|
79
81
|
if (data) {
|
|
@@ -59,6 +59,8 @@ export interface IHznkNoteResponse {
|
|
|
59
59
|
wContact: string;
|
|
60
60
|
/**联系方式 */
|
|
61
61
|
dContact: string;
|
|
62
|
+
/** 送审/审核时间 */
|
|
63
|
+
lastTime: number;
|
|
62
64
|
|
|
63
65
|
/**附件 */
|
|
64
66
|
listPath: TCore.IPathResponse[];
|
|
@@ -120,6 +122,8 @@ export class THznkNoteResponse implements IHznkNoteResponse {
|
|
|
120
122
|
flowStat: number = 0;
|
|
121
123
|
wContact: string = "";
|
|
122
124
|
dContact: string = "";
|
|
125
|
+
/** 送审/审核时间 */
|
|
126
|
+
lastTime: number=0;
|
|
123
127
|
|
|
124
128
|
listPath: TCore.IPathResponse[] = [];
|
|
125
129
|
listFrom: THznk.IHznkMainResponse[] = [];
|
|
@@ -130,6 +130,8 @@ export interface IMyoaMainResponse {
|
|
|
130
130
|
autoModeText: string;
|
|
131
131
|
deviceD1: number /** 有无投影 {0:否,1:有} */;
|
|
132
132
|
pageNums: string /** 盖章页码 */;
|
|
133
|
+
/** 送审/审核时间 */
|
|
134
|
+
lastTime: number;
|
|
133
135
|
|
|
134
136
|
/**
|
|
135
137
|
* 公物仓
|
|
@@ -317,6 +319,8 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
317
319
|
lastMemo: string = "";
|
|
318
320
|
usesDzqz: number = 0;
|
|
319
321
|
flowUser: string = "";
|
|
322
|
+
/** 送审/审核时间 */
|
|
323
|
+
lastTime: number = 0;
|
|
320
324
|
|
|
321
325
|
cardUnitText: string = "";
|
|
322
326
|
cardDeptText: string = "";
|