@ningboyz/apis 1.2.182 → 1.2.183
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 +1 -1
- package/packages/bill/types.ts +10 -1
package/package.json
CHANGED
package/packages/bill/types.ts
CHANGED
|
@@ -58,9 +58,11 @@ export interface IBillMainChkexistQuerys {}
|
|
|
58
58
|
export class TBillMainChkexistQuerys implements IBillMainChkexistQuerys {}
|
|
59
59
|
|
|
60
60
|
export interface IBillMainClosedbQuerys {
|
|
61
|
-
|
|
61
|
+
/** 关闭类型:0:手工;1:系统 */
|
|
62
62
|
closetype: number;
|
|
63
|
+
/** 关闭状态:0:未关闭;1:已关闭 */
|
|
63
64
|
canclose: number;
|
|
65
|
+
billmain: number;
|
|
64
66
|
}
|
|
65
67
|
|
|
66
68
|
export class TBillMainClosedbQuerys implements IBillMainClosedbQuerys {
|
|
@@ -68,3 +70,10 @@ export class TBillMainClosedbQuerys implements IBillMainClosedbQuerys {
|
|
|
68
70
|
closetype: number = -1;
|
|
69
71
|
canclose: number = -1;
|
|
70
72
|
}
|
|
73
|
+
|
|
74
|
+
export interface IBillMainUpdated2Querys {
|
|
75
|
+
datahide: number;
|
|
76
|
+
billmain: number;
|
|
77
|
+
closetype: number;
|
|
78
|
+
canclose: number;
|
|
79
|
+
}
|