@ningboyz/types 1.2.60 → 1.2.61
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
|
@@ -40,6 +40,9 @@ export interface IYzhtBillResponse {
|
|
|
40
40
|
zftjText: string;
|
|
41
41
|
unitMain: number;
|
|
42
42
|
|
|
43
|
+
/** 合同名称 */
|
|
44
|
+
yzhtName: string;
|
|
45
|
+
|
|
43
46
|
entityID: string;
|
|
44
47
|
taxRatio?: number;
|
|
45
48
|
detailId: number;
|
|
@@ -122,6 +125,9 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
|
|
|
122
125
|
sybmMain: number = 0;
|
|
123
126
|
zftjText: string = "";
|
|
124
127
|
|
|
128
|
+
/** 合同名称 */
|
|
129
|
+
yzhtName: string = "";
|
|
130
|
+
|
|
125
131
|
entityID: string = "";
|
|
126
132
|
detailId: number = 0;
|
|
127
133
|
unitMain: number = 0;
|