@ningboyz/types 1.6.175 → 1.6.176

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.6.175",
4
+ "version": "1.6.176",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -16,6 +16,7 @@ export interface IHzcbXmtzBillResponse {
16
16
  deleteBy: string;
17
17
  deleteAt: number;
18
18
  queuesBy: number;
19
+ hzcbMain: number;
19
20
  /** 年度 */
20
21
  yearFrom: number;
21
22
  /** 预算金额 */
@@ -51,6 +52,17 @@ export interface IHzcbXmtzBillResponse {
51
52
  qtMoney4: number;
52
53
  qtMoney5: number;
53
54
  qtMoney6: number;
55
+
56
+ /** 一级项目名称 */
57
+ hzcbTxt1: string;
58
+ /** 项目名称 */
59
+ hzcbName: string;
60
+ /** 项目总投 */
61
+ outMoney: number;
62
+ /** 起始时间 */
63
+ startDay: number;
64
+ /** 项目期限 */
65
+ hzcbXmqx: number;
54
66
  }
55
67
 
56
68
  export class THzcbXmtzBillResponse implements IHzcbXmtzBillResponse {
@@ -71,6 +83,7 @@ export class THzcbXmtzBillResponse implements IHzcbXmtzBillResponse {
71
83
  deleteBy: string = "";
72
84
  deleteAt: number = 0;
73
85
  queuesBy: number = 0;
86
+ hzcbMain: number = 0;
74
87
  /** 年度 */
75
88
  yearFrom: number = 0;
76
89
  /** 预算金额 */
@@ -106,4 +119,15 @@ export class THzcbXmtzBillResponse implements IHzcbXmtzBillResponse {
106
119
  qtMoney4: number = 0;
107
120
  qtMoney5: number = 0;
108
121
  qtMoney6: number = 0;
122
+
123
+ /** 一级项目名称 */
124
+ hzcbTxt1: string = "";
125
+ /** 项目名称 */
126
+ hzcbName: string = "";
127
+ /** 项目总投 */
128
+ outMoney: number = 0;
129
+ /** 起始时间 */
130
+ startDay: number = 0;
131
+ /** 项目期限 */
132
+ hzcbXmqx: number = 0;
109
133
  }
@@ -2,7 +2,6 @@ import { Const } from "..";
2
2
  import { IPathResponse } from "../core";
3
3
  import { TFlowDataResponse } from "../flow";
4
4
  import { IYzhtMainResponse } from "../yzht";
5
- import { IHzcbMainResponse } from "./IHzcbMainResponse";
6
5
  import { IHzcbXmtzBillResponse } from "./IHzcbXmtzBillResponse";
7
6
  import _ from "lodash";
8
7
 
@@ -10,7 +9,6 @@ export interface IHzcbXmtzResponse {
10
9
  whoBuild: number;
11
10
  userIndx: number;
12
11
  xmtzIndx: number;
13
- hzcbMain: number;
14
12
  parentID: number;
15
13
  hashCode: number;
16
14
  dataLevl: number;
@@ -54,6 +52,8 @@ export interface IHzcbXmtzResponse {
54
52
 
55
53
  /** 合同金额 */
56
54
  totalVal: number;
55
+ /** 预算金额 */
56
+ billYsje: number;
57
57
  /** 合同计划支付金额 */
58
58
  payMoney: number;
59
59
  /** 计划申请金额 */
@@ -87,9 +87,7 @@ export interface IHzcbXmtzResponse {
87
87
  startDay: number;
88
88
  /** 项目期限 */
89
89
  hzcbXmqx: number;
90
- billYsje: number;
91
90
 
92
- listFrom: IHzcbMainResponse[];
93
91
  listBill: IHzcbXmtzBillResponse[];
94
92
  listYZHT: IYzhtMainResponse[];
95
93
  listPath: IPathResponse[];
@@ -99,7 +97,6 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
99
97
  whoBuild: number = 0;
100
98
  userIndx: number = 0;
101
99
  xmtzIndx: number = 0;
102
- hzcbMain: number = 0;
103
100
  parentID: number = 0;
104
101
  hashCode: number = 0;
105
102
  dataLevl: number = 0;
@@ -143,6 +140,8 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
143
140
 
144
141
  /** 合同金额 */
145
142
  totalVal: number = 0;
143
+ /** 预算金额 */
144
+ billYsje: number = 0;
146
145
  /** 合同计划支付金额 */
147
146
  payMoney: number = 0;
148
147
  /** 计划申请金额 */
@@ -176,9 +175,7 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
176
175
  startDay: number = 0;
177
176
  /** 项目期限 */
178
177
  hzcbXmqx: number = 0;
179
- billYsje: number = 0;
180
178
 
181
- listFrom: IHzcbMainResponse[] = [];
182
179
  listBill: IHzcbXmtzBillResponse[] = [];
183
180
  listYZHT: IYzhtMainResponse[] = [];
184
181
  listPath: IPathResponse[] = [];