@ningboyz/types 1.2.104 → 1.2.106

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.2.104",
4
+ "version": "1.2.106",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -48,7 +48,7 @@ export interface ICardBookResponse {
48
48
  /** 不动产单元号 */
49
49
  cardCode: string;
50
50
  /** 共有情况 */
51
- cardCase: string;
51
+ cardCase: number;
52
52
  /** 权利性质 */
53
53
  cardQlxz: number;
54
54
  /** 权利类型 */
@@ -109,7 +109,7 @@ export class TCardBookResponse implements ICardBookResponse {
109
109
  /** 不动产单元号 */
110
110
  cardCode: string = '';
111
111
  /** 共有情况 */
112
- cardCase: string = '';
112
+ cardCase: number = 0;
113
113
  /** 权利性质 */
114
114
  cardQlxz: number = 0;
115
115
  /** 权利类型 */
package/src/card/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ICardBookResponse, TCardBookResponse } from "./ICardBookResponse.ts";
2
2
  import { IDataResponse, TDataResponse } from "./ICardDataResponse.ts";
3
+ import { ICardFromResponse, TCardFromResponse } from "./ICardFromResponse.ts";
3
4
  import { ICardFwczResponse, TCardFwczResponse } from "./ICardFwczResponse.ts";
4
5
  import { ICardHyhbBillResponse, TCardHyhbBillResponse } from "./ICardHyhbBillResponse.ts";
5
6
  import { ICardHyhbResponse, TCardHyhbResponse } from "./ICardHyhbResponse.ts";
@@ -37,6 +38,7 @@ export {
37
38
  TZclbResponse,
38
39
  TZczjPropResponse,
39
40
  TZczjResponse,
41
+ TCardFromResponse,
40
42
  type ICardBookResponse,
41
43
  type ICardFwczResponse,
42
44
  type ICardHyhbBillResponse,
@@ -55,6 +57,7 @@ export {
55
57
  type IZcdbResponse,
56
58
  type IZclbResponse,
57
59
  type IZczjPropResponse,
58
- type IZczjResponse
60
+ type IZczjResponse,
61
+ type ICardFromResponse,
59
62
  };
60
63
 
@@ -43,20 +43,34 @@ export interface IHznkBaseResponse {
43
43
  flowText: string;
44
44
  baseDate: number;
45
45
  baseStat: number;
46
+ /**项目名称 */
46
47
  baseName: string;
48
+ /**项目编码 */
47
49
  baseCode: string;
50
+ /**申请理由 */
48
51
  baseUses: string;
52
+ /**备注信息 */
49
53
  baseMemo: string;
54
+ /**项目类型 */
50
55
  baseType: number;
56
+ /**项目层级 */
51
57
  baseMode: number;
52
58
  baseFrom: number;
59
+ /**项目来源 */
53
60
  fromText: string;
61
+ /**实施开始日期 */
54
62
  startDay: number;
63
+ /**实施结束日期 */
55
64
  endedDay: number;
65
+ /**负责人 */
56
66
  chargeBy: string;
67
+ /**内部用户 */
57
68
  nbyhText: string;
69
+ /**外部用户 */
58
70
  wbyhText: string;
71
+ /**内部总经费 */
59
72
  innerVal: number;
73
+ /**外部总经费 */
60
74
  outerVal: number;
61
75
 
62
76
  /**附件 */
@@ -19,6 +19,8 @@ export interface IHznkDataNbyhResponse {
19
19
  queuesBy: number;
20
20
  userMain: number;
21
21
  userName: string;
22
+ /**数据分类文本 (作者|通讯作者) */
23
+ dataUses: string;
22
24
  }
23
25
 
24
26
  export class THznkDataNbyhResponse implements IHznkDataNbyhResponse {
@@ -42,4 +44,5 @@ export class THznkDataNbyhResponse implements IHznkDataNbyhResponse {
42
44
  queuesBy: number = 0;
43
45
  userMain: number = 0;
44
46
  userName: string = "";
47
+ dataUses: string = "";
45
48
  }
@@ -58,24 +58,40 @@ export interface IHznkMainResponse {
58
58
  /**项目层级 */
59
59
  baseMode: number;
60
60
  baseFrom: number;
61
+ /**项目来源 */
61
62
  fromText: string;
63
+ /**实施开始日期 */
62
64
  startDay: number;
65
+ /**实施结束日期 */
63
66
  endedDay: number;
67
+ /**项目负责人 */
64
68
  chargeBy: string;
69
+ /**项目成员(内部) */
65
70
  nbyhText: string;
71
+ /**项目成员(外部) */
66
72
  wbyhText: string;
73
+ /**总经费 */
67
74
  totalVal: number;
75
+ /**内部总经费 */
68
76
  innerVal: number;
77
+ /**外部总经费 */
69
78
  outerVal: number;
79
+ /**内部激励费 */
70
80
  innerFy1: number;
81
+ /**内部管理费 */
71
82
  innerFy2: number;
83
+ /**已提取激励费 */
72
84
  innerTq1: number;
85
+ /**已提取管理费 */
73
86
  innerTq2: number;
74
87
 
75
88
  /**附件 */
76
89
  listPath: IPathResponse[];
90
+ /**内部用户 */
77
91
  listNBYH: IHznkMainNbyhResponse[];
92
+ /**外部用户 */
78
93
  listWBYH: IHznkMainWbyhResponse[];
94
+ /**外部单位 */
79
95
  listWBDW: IHznkMainWbdwResponse[];
80
96
  }
81
97
 
package/src/hznk/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { IHznkDataResponse, THznkDataResponse } from "./IHznkDataResponse";
2
2
  import { IHznkDataEachResponse, THznkDataEachResponse } from "./IHznkDataEachResponse";
3
3
  import { IHznkDataPathResponse, THznkDataPathResponse } from "./IHznkDataPathResponse";
4
-
4
+ import { IHznkDataItemResponse, THznkDataItemResponse } from "./IHznkDataItemResponse";
5
5
  import { IHznkBaseResponse, THznkBaseResponse } from "./IHznkBaseResponse";
6
6
 
7
- export { THznkDataResponse, THznkDataEachResponse, THznkDataPathResponse,THznkBaseResponse, type IHznkDataResponse, type IHznkDataEachResponse, type IHznkDataPathResponse ,type IHznkBaseResponse};
7
+ export { THznkDataResponse, THznkDataEachResponse, THznkDataPathResponse,THznkBaseResponse, THznkDataItemResponse, type IHznkDataResponse, type IHznkDataEachResponse, type IHznkDataPathResponse ,type IHznkBaseResponse, type IHznkDataItemResponse};
@@ -1,4 +1,5 @@
1
- import { IPathResponse } from "../core";
1
+ import { ICardFwczResponse, ICardHyhbResponse, ICardRoomResponse } from "../card";
2
+ import { IPathResponse, IUserResponse } from "../core";
2
3
  import { IHzcbMainResponse } from "../hzcb";
3
4
  import { IYzhtBillResponse } from "./IYzhtBillResponse";
4
5
 
@@ -208,6 +209,10 @@ export interface IYzhtMainResponse {
208
209
  yzhtLock: number;
209
210
  listBill: IYzhtBillResponse[]; //支付信息
210
211
  listHZCB: IHzcbMainResponse[];
212
+ listD2DW: IUserResponse[];
213
+ listHyhb: ICardHyhbResponse[];
214
+ listFwcz: ICardFwczResponse[];
215
+ listRoom: ICardRoomResponse[];
211
216
  }
212
217
 
213
218
  export class TYzhtMainResponse implements IYzhtMainResponse {
@@ -413,4 +418,8 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
413
418
  yzhtLock: number = 0;
414
419
  listBill: IYzhtBillResponse[] = [];
415
420
  listHZCB: IHzcbMainResponse[] = [];
421
+ listD2DW: IUserResponse[] = [];
422
+ listHyhb: ICardHyhbResponse[] = [];
423
+ listFwcz: ICardFwczResponse[] = [];
424
+ listRoom: ICardRoomResponse[] = [];
416
425
  }