@ningboyz/types 1.5.58 → 1.5.59

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.58",
4
+ "version": "1.5.59",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -81,6 +81,30 @@ export interface IHzcbXmykResponse {
81
81
  // 文件号
82
82
  fileCode: string;
83
83
 
84
+ /** 功能科目 */
85
+ gnkmMain: number;
86
+ gnkmUUID: string;
87
+ gnkmCode: string;
88
+ gnkmName: string;
89
+
90
+ /** 经济科目 */
91
+ bmkmMain: number;
92
+ bmkmUUID: string;
93
+ bmkmCode: string;
94
+ bmkmName: string;
95
+
96
+ /** 预算级次 */
97
+ ysjcMain: number;
98
+ ysjcUUID: string;
99
+ ysjcCode: string;
100
+ ysjcName: string;
101
+
102
+ /** 资金性质 */
103
+ zjxzMain: number;
104
+ zjxzUUID: string;
105
+ zjxzCode: string;
106
+ zjxzName: string;
107
+
84
108
  listFrom: IHzcbMainResponse[];
85
109
  listUnit: IUnitResponse[];
86
110
  listBill: IYzhtBillResponse[];
@@ -161,6 +185,26 @@ export class THzcbXmykResponse implements IHzcbXmykResponse {
161
185
  sourceDW: string = "";
162
186
  fileCode: string = "";
163
187
 
188
+ gnkmMain: number = 0;
189
+ gnkmUUID: string = "";
190
+ gnkmCode: string = "";
191
+ gnkmName: string = "";
192
+
193
+ bmkmMain: number = 0;
194
+ bmkmUUID: string = "";
195
+ bmkmCode: string = "";
196
+ bmkmName: string = "";
197
+
198
+ ysjcMain: number = 0;
199
+ ysjcUUID: string = "";
200
+ ysjcCode: string = "";
201
+ ysjcName: string = "";
202
+
203
+ zjxzMain: number = 0;
204
+ zjxzUUID: string = "";
205
+ zjxzCode: string = "";
206
+ zjxzName: string = "";
207
+
164
208
  listFrom: IHzcbMainResponse[] = [];
165
209
  listBill: IYzhtBillResponse[] = [];
166
210
  listPath: IPathResponse[] = [];
@@ -1,3 +1,4 @@
1
+ import _ from "lodash";
1
2
  import { ICardFwczResponse, ICardHyhbResponse, ICardRoomResponse } from "../card";
2
3
  import { IPathResponse, IUserResponse } from "../core";
3
4
  import { TFlowDataResponse } from "../flow";
@@ -5,7 +6,6 @@ import { IHzcbMainResponse } from "../hzcb";
5
6
  import { IYzhtBillResponse } from "./IYzhtBillResponse";
6
7
  import { IYzhtDzmxResponse } from "./IYzhtDzmxResponse";
7
8
  import { IYzhtFymxResponse } from "./IYzhtFymxResponse";
8
- import _ from "lodash";
9
9
 
10
10
  export interface IYzhtMainResponse {
11
11
  whoBuild: number;
@@ -343,6 +343,31 @@ export interface IYzhtMainResponse {
343
343
  /** 客户名称 */
344
344
  d2dwText: string;
345
345
 
346
+ /** 应收时间 */
347
+ shouldAt: number;
348
+ /** 移出原因 */
349
+ reasonBy: string;
350
+ /** 安置类型/补偿类型.标识 */
351
+ azcqType: number;
352
+ /** 安置类型/补偿类型.名称 */
353
+ azcqTypeText: string;
354
+ /** 拆迁补偿金额 */
355
+ azMoney1: number;
356
+ /** 其他补偿金额 */
357
+ azMoney2: number;
358
+ /** 安置面积 */
359
+ azValue1: number;
360
+ /** 安置地点 */
361
+ ddwzText: string;
362
+ /** 安置房产价值 */
363
+ azValue2: number;
364
+ /** 异常类型.标识 */
365
+ errorTyp: number;
366
+ /** 异常类型.名称 */
367
+ errorTypText: string;
368
+ /** 异常原因 */
369
+ errorMsg: string;
370
+
346
371
  /** 支付期数 */
347
372
  billSize: number;
348
373
  billStat?: number | undefined;
@@ -695,6 +720,31 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
695
720
  /** 客户名称 */
696
721
  d2dwText: string = "";
697
722
 
723
+ /** 应收时间 */
724
+ shouldAt: number = 0;
725
+ /** 移出原因 */
726
+ reasonBy: string = "";
727
+ /** 安置类型/补偿类型.标识 */
728
+ azcqType: number = 0;
729
+ /** 安置类型/补偿类型.名称 */
730
+ azcqTypeText: string = "";
731
+ /** 拆迁补偿金额 */
732
+ azMoney1: number = 0;
733
+ /** 其他补偿金额 */
734
+ azMoney2: number = 0;
735
+ /** 安置面积 */
736
+ azValue1: number = 0;
737
+ /** 安置地点 */
738
+ ddwzText: string = "";
739
+ /** 安置房产价值 */
740
+ azValue2: number = 0;
741
+ /** 异常类型.标识 */
742
+ errorTyp: number = 0;
743
+ /** 异常类型.名称 */
744
+ errorTypText: string = "";
745
+ /** 异常原因 */
746
+ errorMsg: string = "";
747
+
698
748
  /** 支付期数 */
699
749
  billSize: number = 0;
700
750
  billStat?: number | undefined = undefined;
@@ -214,6 +214,10 @@ export interface IZbzdMainResponse {
214
214
  * 流程节点判断
215
215
  */
216
216
  flowVal1: number;
217
+ /**
218
+ * 关联单据
219
+ */
220
+ billFrom: number;
217
221
  /**
218
222
  * 资金性质.名称
219
223
  */
@@ -350,6 +354,7 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
350
354
  deptFrom: number = 0;
351
355
  deptFromText: string = "";
352
356
  flowVal1: number = -1;
357
+ billFrom: number = 0;
353
358
  sourceDw: string = "";
354
359
  zjxzText: string = "";
355
360