@ningboyz/types 1.6.23 → 1.6.26
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
|
@@ -131,6 +131,12 @@ export interface IBillMainResponse {
|
|
|
131
131
|
/** 付款方式(文本) */
|
|
132
132
|
billFkfsText: string;
|
|
133
133
|
|
|
134
|
+
/** 房产名称 */
|
|
135
|
+
cardName: string;
|
|
136
|
+
/** 房间编号 */
|
|
137
|
+
roomCode: string;
|
|
138
|
+
/** 房间地址 */
|
|
139
|
+
roomAddr: string;
|
|
134
140
|
/** 结清标志:0:未关闭;1:已关闭 */
|
|
135
141
|
hasEnded: number;
|
|
136
142
|
|
|
@@ -281,6 +287,12 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
281
287
|
/** 付款方式(文本) */
|
|
282
288
|
billFkfsText: string = "";
|
|
283
289
|
|
|
290
|
+
/** 房产名称 */
|
|
291
|
+
cardName: string = "";
|
|
292
|
+
/** 房间编号 */
|
|
293
|
+
roomCode: string = "";
|
|
294
|
+
/** 房间地址 */
|
|
295
|
+
roomAddr: string = "";
|
|
284
296
|
/** 结清标志:0:未关闭;1:已关闭 */
|
|
285
297
|
hasEnded: number = 0;
|
|
286
298
|
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
|
|
3
|
+
export interface IWzpzUserK8kmResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
sourceND: number;
|
|
7
|
+
sourceID: number;
|
|
8
|
+
idEntity: number;
|
|
9
|
+
dataStat: number;
|
|
10
|
+
dataOrdr: number;
|
|
11
|
+
dataDate: number;
|
|
12
|
+
dataTime: number;
|
|
13
|
+
dataHide: number;
|
|
14
|
+
dataGUID: string;
|
|
15
|
+
createBy: string;
|
|
16
|
+
createAt: number;
|
|
17
|
+
updateBy: string;
|
|
18
|
+
updateAt: number;
|
|
19
|
+
deleteBy: string;
|
|
20
|
+
deleteAt: number;
|
|
21
|
+
queuesBy: number;
|
|
22
|
+
userMain: number;
|
|
23
|
+
k8kmKmid: number;
|
|
24
|
+
k8kmKmbm: string;
|
|
25
|
+
k8kmKmmc: string;
|
|
26
|
+
itemMain: number;
|
|
27
|
+
itemCode: string;
|
|
28
|
+
itemName: string;
|
|
29
|
+
billMemo: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class TWzpzUserK8kmResponse implements IWzpzUserK8kmResponse {
|
|
33
|
+
whoBuild: number = 0;
|
|
34
|
+
userIndx: number = 0;
|
|
35
|
+
sourceND: number = 0;
|
|
36
|
+
sourceID: number = 0;
|
|
37
|
+
idEntity: number = 0;
|
|
38
|
+
dataStat: number = 0;
|
|
39
|
+
dataOrdr: number = 0;
|
|
40
|
+
dataDate: number = 0;
|
|
41
|
+
dataTime: number = 0;
|
|
42
|
+
dataHide: number = 0;
|
|
43
|
+
dataGUID: string = "";
|
|
44
|
+
createBy: string = "";
|
|
45
|
+
createAt: number = 0;
|
|
46
|
+
updateBy: string = "";
|
|
47
|
+
updateAt: number = 0;
|
|
48
|
+
deleteBy: string = "";
|
|
49
|
+
deleteAt: number = 0;
|
|
50
|
+
queuesBy: number = 0;
|
|
51
|
+
userMain: number = 0;
|
|
52
|
+
k8kmKmid: number = 0;
|
|
53
|
+
k8kmKmbm: string = "";
|
|
54
|
+
k8kmKmmc: string = "";
|
|
55
|
+
itemMain: number = 0;
|
|
56
|
+
itemCode: string = "";
|
|
57
|
+
itemName: string = "";
|
|
58
|
+
billMemo: string = "";
|
|
59
|
+
|
|
60
|
+
constructor(data: Partial<IWzpzUserK8kmResponse> = {}) {
|
|
61
|
+
if (data) {
|
|
62
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
}
|
package/src/wzpz/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { IWzpzKbkmResponse, TWzpzKbkmResponse } from "./IWzpzKbkmResponse";
|
|
|
6
6
|
import { IWzpzPckmResponse, TWzpzPckmResponse } from "./IWzpzPckmResponse";
|
|
7
7
|
import { IWzpzTypeResponse, TWzpzTypeResponse } from "./IWzpzTypeResponse";
|
|
8
8
|
import { IWzpzUserBodyResponse, TWzpzUserBodyResponse } from "./IWzpzUserBodyResponse";
|
|
9
|
+
import { IWzpzUserK8kmResponse, TWzpzUserK8kmResponse } from "./IWzpzUserK8kmResponse";
|
|
9
10
|
import { IWzWithParaResponse, TWzWithParaResponse } from "./IWzWithParaResponse";
|
|
10
11
|
|
|
11
12
|
export {
|
|
@@ -18,6 +19,8 @@ export {
|
|
|
18
19
|
type IWzpzTypeResponse,
|
|
19
20
|
type IWzWithParaResponse,
|
|
20
21
|
type IWzpzUserBodyResponse,
|
|
22
|
+
type IWzpzUserK8kmResponse,
|
|
23
|
+
|
|
21
24
|
TWzpzCnfgResponse,
|
|
22
25
|
TWzpzK0kmResponse,
|
|
23
26
|
TWzpzItemResponse,
|
|
@@ -26,5 +29,6 @@ export {
|
|
|
26
29
|
TWzpzPckmResponse,
|
|
27
30
|
TWzpzTypeResponse,
|
|
28
31
|
TWzWithParaResponse,
|
|
29
|
-
TWzpzUserBodyResponse
|
|
32
|
+
TWzpzUserBodyResponse,
|
|
33
|
+
TWzpzUserK8kmResponse
|
|
30
34
|
};
|