@ningboyz/types 1.5.122 → 1.5.124
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
|
@@ -62,6 +62,14 @@ export interface ICardFwczResponse {
|
|
|
62
62
|
fwczGhyxq: number;
|
|
63
63
|
/** 底价确定方式 */
|
|
64
64
|
fwczQdfs: number;
|
|
65
|
+
/** 行权人职务 */
|
|
66
|
+
flowUsrTitle: string;
|
|
67
|
+
/** 行权人姓名 */
|
|
68
|
+
flowUserName: string;
|
|
69
|
+
/** 行权人身份证号 */
|
|
70
|
+
flowUserIdcd: string;
|
|
71
|
+
/** 行权人联系方式 */
|
|
72
|
+
flowDContact: string;
|
|
65
73
|
/** 备注 */
|
|
66
74
|
fwczMemo: string;
|
|
67
75
|
|
|
@@ -150,6 +158,14 @@ export class TCardFwczResponse implements ICardFwczResponse {
|
|
|
150
158
|
fwczGhyxq: number = 0;
|
|
151
159
|
/** 底价确定方式 */
|
|
152
160
|
fwczQdfs: number = 0;
|
|
161
|
+
/** 行权人职务 */
|
|
162
|
+
flowUsrTitle: string = "";
|
|
163
|
+
/** 行权人姓名 */
|
|
164
|
+
flowUserName: string = "";
|
|
165
|
+
/** 行权人身份证号 */
|
|
166
|
+
flowUserIdcd: string = "";
|
|
167
|
+
/** 行权人联系方式 */
|
|
168
|
+
flowDContact: string = "";
|
|
153
169
|
/** 备注 */
|
|
154
170
|
fwczMemo: string = "";
|
|
155
171
|
|
|
@@ -202,6 +202,7 @@ export const CONST_SYS_TYPEU_房产管理_招租方式 = "房产管理-招租方
|
|
|
202
202
|
export const CONST_SYS_TYPEU_房产管理_底价确定方式 = "房产管理-底价确定方式";
|
|
203
203
|
export const CONST_SYS_TYPEU_房产管理_所在社区 = "房产管理-所在社区";
|
|
204
204
|
export const CONST_SYS_TYPEU_房产管理_所在街道 = "房产管理-所在街道";
|
|
205
|
+
export const CONST_SYS_TYPEU_房产管理_政府债券使用情况 = "房产管理-政府债券使用情况";
|
|
205
206
|
export const CONST_SYS_TYPEU_LSGL_FKFS = "流水管理-付款方式";
|
|
206
207
|
export const CONST_SYS_TYPEU_LSGL_ZFFS = "流水管理-支付方式";
|
|
207
208
|
|