@ningboyz/types 1.3.88 → 1.3.90

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.3.88",
4
+ "version": "1.3.90",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -171,6 +171,7 @@ export const CONST_SYS_TYPEU_资产状态_固定资产 = "资产状态-固定资
171
171
  export const CONST_SYS_TYPEU_上城财政_项目类别 = "上城财政-项目类别";
172
172
  export const CONST_SYS_TYPEU_上城财政_资金性质 = "上城财政-资金性质";
173
173
  export const CONST_SYS_TYPEU_上城财政_支付方式 = "上城财政-支付方式";
174
+ export const CONST_SYS_TYPEU_上城财政_预算级次 = "上城财政-预算级次";
174
175
 
175
176
  export const CONST_SYS_TYPEU_房产管理_使用状态 = "房产管理-使用状态";
176
177
  export const CONST_SYS_TYPEU_房产管理_房产类型 = "房产管理-房产类型";
@@ -135,5 +135,7 @@ export enum TButtonType {
135
135
  /**手动对账 */
136
136
  normalCheckPay = "normalCheckPay",
137
137
  /**取消对账 */
138
- cancelCheckPay = "cancelCheckPay"
138
+ cancelCheckPay = "cancelCheckPay",
139
+ /**查看个人画像 */
140
+ browsePersonalProfile = "browsePersonalProfile"
139
141
  }
@@ -113,6 +113,18 @@ export interface IZbzbZbflResponse {
113
113
  * 归属单位
114
114
  */
115
115
  unitTypeText: string;
116
+ /**
117
+ * 规格配置
118
+ */
119
+ cardGgxh: string;
120
+ /**
121
+ * 数量
122
+ */
123
+ cardSize: number;
124
+ /**
125
+ * 单价
126
+ */
127
+ cardZcdj: number;
116
128
  /**
117
129
  * 资金来源
118
130
  */
@@ -216,6 +228,9 @@ export class TZbzbZbflResponse implements IZbzbZbflResponse {
216
228
  unitMain: number = 0;
217
229
  unitNamf: string = "";
218
230
  unitTypeText: string = "";
231
+ cardGgxh: string = "";
232
+ cardSize: number = 0;
233
+ cardZcdj: number = 0;
219
234
  listZJLY: IGamsItemResponse[] = [];
220
235
 
221
236
  constructor(card: any = {}) {
@@ -165,6 +165,30 @@ export interface IZbzdMainResponse {
165
165
  * 借贷标识
166
166
  */
167
167
  zbflJdbz: number;
168
+ /**
169
+ * 财政受理编号
170
+ */
171
+ czslCode: string;
172
+ /**
173
+ * 收款单位名称
174
+ */
175
+ acnoZhmc: string;
176
+ /**
177
+ * 收款单位账号
178
+ */
179
+ acnoYhzh: string;
180
+ /**
181
+ * 收款单位开户行
182
+ */
183
+ acnoKhyh: string;
184
+ /**
185
+ * 收款单位联系人
186
+ */
187
+ wContact: string;
188
+ /**
189
+ * 收款单位联系人电话
190
+ */
191
+ dContact: string;
168
192
  /**
169
193
  * 指标分录
170
194
  */
@@ -279,6 +303,12 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
279
303
  ysbmName: string = "";
280
304
  zjlyText: string = "";
281
305
  zbflJdbz: number = 0;
306
+ czslCode: string = "";
307
+ acnoZhmc: string = "";
308
+ acnoYhzh: string = "";
309
+ acnoKhyh: string = "";
310
+ wContact: string = "";
311
+ dContact: string = "";
282
312
 
283
313
  listZBFL: IZbzbZbflResponse[] = [];
284
314
  listPath: IPathResponse[] = [];