@ningboyz/types 1.5.91 → 1.5.93
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
|
@@ -143,11 +143,6 @@ export interface IBillMainResponse {
|
|
|
143
143
|
/** 银行类型.名称 */
|
|
144
144
|
bankText: string;
|
|
145
145
|
|
|
146
|
-
/** 全部 */
|
|
147
|
-
totalOutMoney: number;
|
|
148
|
-
totalFinalOut: number;
|
|
149
|
-
totalNowMoney: number;
|
|
150
|
-
|
|
151
146
|
/** 本次 */
|
|
152
147
|
fromOutMoney: number;
|
|
153
148
|
fromFinalOut: number;
|
|
@@ -298,11 +293,6 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
298
293
|
/** 银行类型.名称 */
|
|
299
294
|
bankText: string = "";
|
|
300
295
|
|
|
301
|
-
/** 全部 */
|
|
302
|
-
totalOutMoney: number = 0;
|
|
303
|
-
totalFinalOut: number = 0;
|
|
304
|
-
totalNowMoney: number = 0;
|
|
305
|
-
|
|
306
296
|
/** 本次 */
|
|
307
297
|
fromOutMoney: number = 0;
|
|
308
298
|
fromFinalOut: number = 0;
|
|
@@ -40,6 +40,7 @@ export interface ICardFwczResponse {
|
|
|
40
40
|
flowText: string;
|
|
41
41
|
fwczStat: number;
|
|
42
42
|
fwczCode: string;
|
|
43
|
+
fwczName: string;
|
|
43
44
|
fwczDate: number;
|
|
44
45
|
/** 招租方式 */
|
|
45
46
|
fwczZzfs: number;
|
|
@@ -127,6 +128,7 @@ export class TCardFwczResponse implements ICardFwczResponse {
|
|
|
127
128
|
flowText: string = "";
|
|
128
129
|
fwczStat: number = 0;
|
|
129
130
|
fwczCode: string = "";
|
|
131
|
+
fwczName: string = "";
|
|
130
132
|
fwczDate: number = 0;
|
|
131
133
|
/** 招租方式 */
|
|
132
134
|
fwczZzfs: number = 0;
|
|
@@ -29,8 +29,10 @@ export interface ICardHyhbBillResponse {
|
|
|
29
29
|
pgdwUsci: string;
|
|
30
30
|
/** 是否允许转租 */
|
|
31
31
|
isAssign: number;
|
|
32
|
-
/**
|
|
32
|
+
/** 年租金递增方式.标识 */
|
|
33
33
|
nzdzMode: number;
|
|
34
|
+
/** 年租金递增方式.名称 */
|
|
35
|
+
nzdzModeText: string;
|
|
34
36
|
/** 处置方式 */
|
|
35
37
|
get4from: number;
|
|
36
38
|
/** 租赁模式 */
|
|
@@ -78,8 +80,10 @@ export class TCardHyhbBillResponse implements ICardHyhbBillResponse {
|
|
|
78
80
|
pgdwUsci: string = "";
|
|
79
81
|
/** 是否允许转租 */
|
|
80
82
|
isAssign: number = 0;
|
|
81
|
-
/**
|
|
83
|
+
/** 年租金递增方式.标识 */
|
|
82
84
|
nzdzMode: number = 0;
|
|
85
|
+
/** 年租金递增方式.名称 */
|
|
86
|
+
nzdzModeText: string = "";
|
|
83
87
|
/** 处置方式 */
|
|
84
88
|
get4from: number = 0;
|
|
85
89
|
/** 租赁方式 */
|
|
@@ -126,6 +126,8 @@ export interface IViewCtrlResponseWithParaConv {
|
|
|
126
126
|
exportExcelFileName: string;
|
|
127
127
|
}[];
|
|
128
128
|
changeUUID?: string;
|
|
129
|
+
/** 角色名称 */
|
|
130
|
+
roleName?: string;
|
|
129
131
|
/** 用户管理-重置的密码 */
|
|
130
132
|
resetPassword?: string;
|
|
131
133
|
interfaceUUID?: string; //其他页面的UUID
|
|
@@ -150,6 +152,7 @@ export class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaC
|
|
|
150
152
|
tabsTitle: string;
|
|
151
153
|
exportExcelFileName: string;
|
|
152
154
|
}[] = [];
|
|
155
|
+
roleName: string = "";
|
|
153
156
|
changeUUID?: string = "";
|
|
154
157
|
interfaceUUID?: string = ""; //其他页面的UUID
|
|
155
158
|
pathId?: string = ""; // 附件的dictindx
|