@ningboyz/types 1.1.65 → 1.1.67

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.1.65",
3
+ "version": "1.1.67",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -167,6 +167,7 @@ export const CONST_SYS_TYPEU_上城财政_密级 = "上城财政-密级";
167
167
  export const CONST_SYS_TYPEU_上城财政_紧急程度 = "上城财政-紧急程度";
168
168
  export const CONST_SYS_TYPEU_上城财政_信息公开项 = "上城财政-信息公开项";
169
169
  export const CONST_SYS_TYPEU_资产状态_固定资产 = "资产状态-固定资产";
170
+ export const CONST_SYS_TYPEU_上城财政_项目类别 = "上城财政-项目类别";
170
171
 
171
172
  export const CONST_SYS_TYPEU_公章管理_公章类型 = "公章管理-公章类型";
172
173
  export const CONST_SYS_TYPEU_公章管理_文件类型 = "公章管理-文件类型";
@@ -28,10 +28,12 @@ export interface IGzjgGzlmResponse {
28
28
  deleteBy: string;
29
29
  deleteAt: number;
30
30
  listElem: IElemElemResponse[];
31
+
31
32
  gzlmFlbh: number; //#栏目编号
32
33
  gzlmFllx: number; //#栏目类型 0:数值;
33
34
  gzlmFlws: number; //#小数位数
34
35
  gzlmFljs: number; //#是否计算
36
+
35
37
  gzlmFllj: number; //#是否累计
36
38
  gzlmFlgq: number; //#是否挂起
37
39
  gzlmFlkd: number; //#栏目宽度
@@ -1,3 +1,5 @@
1
+ import { IYzhtBillResponse } from "./IYzhtBillResponse";
2
+
1
3
  export interface IYzhtMainResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -198,6 +200,7 @@ export interface IYzhtMainResponse {
198
200
  pathSize: number;
199
201
  expectEd: number; //#是否预付款 0为不是 1为是
200
202
  yzhtLock: number;
203
+ listBill: IYzhtBillResponse[]; // 支付信息
201
204
  }
202
205
 
203
206
  export class TYzhtMainResponse implements IYzhtMainResponse {
@@ -397,4 +400,5 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
397
400
  pathSize = 0;
398
401
  expectEd = 0;
399
402
  yzhtLock: number = 0;
403
+ listBill: IYzhtBillResponse[] = [];
400
404
  }