@ningboyz/types 1.3.29 → 1.3.30
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
|
@@ -118,11 +118,15 @@ export interface IHzcbMainResponse {
|
|
|
118
118
|
fromOutMoney: number;
|
|
119
119
|
fromHzcbMemo: string;
|
|
120
120
|
|
|
121
|
+
/**关联原始单据ID */
|
|
122
|
+
originID: number;
|
|
123
|
+
|
|
121
124
|
/** 附件 */
|
|
122
125
|
listPath: TCore.IPathResponse[];
|
|
123
126
|
/** 资金来源 */
|
|
124
127
|
listZJLY: THzcb.IHzcbZjlyResponse[];
|
|
125
128
|
listNode: THzcb.IHzcbNodeResponse[];
|
|
129
|
+
listLock: THzcb.IHzcbMainResponse[];
|
|
126
130
|
}
|
|
127
131
|
|
|
128
132
|
export class THzcbMainResponse implements IHzcbMainResponse {
|
|
@@ -230,6 +234,7 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
230
234
|
|
|
231
235
|
fromOutMoney: number = 0;
|
|
232
236
|
fromHzcbMemo: string = "";
|
|
237
|
+
originID: number = 0;
|
|
233
238
|
|
|
234
239
|
constructor(card: any = {}) {
|
|
235
240
|
if (card) {
|
|
@@ -265,4 +270,5 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
265
270
|
listPath: TCore.IPathResponse[] = [];
|
|
266
271
|
listZJLY: THzcb.IHzcbZjlyResponse[] = [];
|
|
267
272
|
listNode: THzcb.IHzcbNodeResponse[] = [];
|
|
273
|
+
listLock: THzcb.IHzcbMainResponse[] = [];
|
|
268
274
|
}
|