@ningboyz/types 1.5.14 → 1.5.16
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
|
@@ -49,6 +49,7 @@ export interface IHzcbXmtzResponse {
|
|
|
49
49
|
xmtzStat: number;
|
|
50
50
|
xmtzUses: string;
|
|
51
51
|
xmtzMemo: string;
|
|
52
|
+
sourceDW: string;
|
|
52
53
|
|
|
53
54
|
/** 合同金额 */
|
|
54
55
|
totalVal: number;
|
|
@@ -136,6 +137,7 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
|
|
|
136
137
|
xmtzStat: number = 0;
|
|
137
138
|
xmtzUses: string = "";
|
|
138
139
|
xmtzMemo: string = "";
|
|
140
|
+
sourceDW: string = "";
|
|
139
141
|
|
|
140
142
|
/** 合同金额 */
|
|
141
143
|
totalVal: number = 0;
|
|
@@ -15,6 +15,8 @@ export interface IYzhtBillResponse {
|
|
|
15
15
|
updateBy: string;
|
|
16
16
|
updateAt: number;
|
|
17
17
|
deleteBy: string;
|
|
18
|
+
unitText: string;
|
|
19
|
+
sourceDW: string;
|
|
18
20
|
deleteAt: number;
|
|
19
21
|
billZfqh: number;
|
|
20
22
|
billZftj: number;
|
|
@@ -48,6 +50,7 @@ export interface IYzhtBillResponse {
|
|
|
48
50
|
sybmMain: number;
|
|
49
51
|
zftjText: string;
|
|
50
52
|
unitMain: number;
|
|
53
|
+
lastTime: number;
|
|
51
54
|
|
|
52
55
|
/** 合同名称 */
|
|
53
56
|
yzhtName: string;
|
|
@@ -110,6 +113,8 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
|
|
|
110
113
|
updateBy: string = "";
|
|
111
114
|
updateAt: number = 0;
|
|
112
115
|
deleteBy: string = "";
|
|
116
|
+
unitText: string = "";
|
|
117
|
+
sourceDW: string = "";
|
|
113
118
|
deleteAt: number = 0;
|
|
114
119
|
billZfqh: number = 0;
|
|
115
120
|
billZftj: number = 0;
|
|
@@ -149,6 +154,7 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
|
|
|
149
154
|
entityID: string = "";
|
|
150
155
|
detailId: number = 0;
|
|
151
156
|
unitMain: number = 0;
|
|
157
|
+
lastTime: number = 0;
|
|
152
158
|
fromAfterApl: number = 0;
|
|
153
159
|
fromAplMoney: number = 0;
|
|
154
160
|
fromFinalOut: number = 0;
|