@ningboyz/types 1.5.122 → 1.5.123

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.5.122",
4
+ "version": "1.5.123",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -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