@ningboyz/types 1.2.48 → 1.2.49
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/index.ts +2 -0
- package/package.json +1 -1
- package/src/bill/IBillMainResponse.ts +4 -0
package/index.ts
CHANGED
|
@@ -41,6 +41,7 @@ import * as TZfht from "./src/zfht";
|
|
|
41
41
|
import * as TZfsq from "./src/zfsq";
|
|
42
42
|
import * as Decorators from "./src/decorators";
|
|
43
43
|
import * as TJapz from "./src/japz";
|
|
44
|
+
import * as TBill from "./src/bill";
|
|
44
45
|
|
|
45
46
|
export {
|
|
46
47
|
Const,
|
|
@@ -82,6 +83,7 @@ export {
|
|
|
82
83
|
TZfht,
|
|
83
84
|
TZfsq,
|
|
84
85
|
TJapz,
|
|
86
|
+
TBill,
|
|
85
87
|
type IAboutConfig,
|
|
86
88
|
type IBaseConfig,
|
|
87
89
|
type IBaseResponse,
|
package/package.json
CHANGED
|
@@ -56,6 +56,9 @@ export interface IBillMainResponse {
|
|
|
56
56
|
finalOut: number;
|
|
57
57
|
payMoney: number;
|
|
58
58
|
nowMoney: number;
|
|
59
|
+
/** 票据配置 */
|
|
60
|
+
billCnfg: number;
|
|
61
|
+
/** 票据类型 */
|
|
59
62
|
billType: number;
|
|
60
63
|
billRate: number;
|
|
61
64
|
imokSize: number;
|
|
@@ -136,6 +139,7 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
136
139
|
flowUndo: number = 0;
|
|
137
140
|
flowUser: string = "";
|
|
138
141
|
flowText: string = "";
|
|
142
|
+
billCnfg: number = 0;
|
|
139
143
|
billStat: number = 0;
|
|
140
144
|
billCode: string = "";
|
|
141
145
|
billDate: number = 0;
|