@ningboyz/types 1.2.77 → 1.2.78
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
|
@@ -26,8 +26,10 @@ export interface IBillCnfgResponse {
|
|
|
26
26
|
|
|
27
27
|
/** 票据类型(字典) */
|
|
28
28
|
billType: number;
|
|
29
|
+
typeText: string;
|
|
29
30
|
/** 银行类型(字典) */
|
|
30
31
|
bankType: number;
|
|
32
|
+
bankText: string;
|
|
31
33
|
/** 打印模板 */
|
|
32
34
|
wldyPage: number;
|
|
33
35
|
cnfgCode: string;
|
|
@@ -36,6 +38,8 @@ export interface IBillCnfgResponse {
|
|
|
36
38
|
cnfgUses: string;
|
|
37
39
|
cnfgMemo: string;
|
|
38
40
|
|
|
41
|
+
|
|
42
|
+
|
|
39
43
|
/** 票号长度 */
|
|
40
44
|
codeSize: number;
|
|
41
45
|
/** 票据张数 */
|
|
@@ -77,7 +81,9 @@ export class TBillCnfgResponse implements IBillCnfgResponse {
|
|
|
77
81
|
entityID: string = "";
|
|
78
82
|
|
|
79
83
|
billType: number = 0;
|
|
84
|
+
typeText: string = "";
|
|
80
85
|
bankType: number = 0;
|
|
86
|
+
bankText: string = "";
|
|
81
87
|
wldyPage: number = 0;
|
|
82
88
|
cnfgCode: string = "";
|
|
83
89
|
cnfgName: string = "";
|