@ningboyz/types 1.7.114 → 1.7.115

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.7.114",
4
+ "version": "1.7.115",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
package/src/index.ts CHANGED
@@ -29,6 +29,7 @@ import * as TJapz from "./japz";
29
29
  import * as TLoad from "./load";
30
30
  import * as Micro from "./micro";
31
31
  import * as TMyoa from "./myoa";
32
+ import * as TNote from "./note";
32
33
  import * as TNoti from "./noti";
33
34
  import * as TPzpt from "./pzpt";
34
35
  import * as TResp from "./response";
@@ -47,13 +48,13 @@ import * as TWtui from "./wtui";
47
48
  import * as TWzpz from "./wzpz";
48
49
  import * as TYzcb from "./yzcb";
49
50
  import * as TYzcg from "./yzcg";
51
+ import * as TYzcq from "./yzcq";
50
52
  import * as TYzht from "./yzht";
51
53
  import * as TYzpz from "./yzpz";
52
54
  import * as TZbhd from "./zbhd";
53
55
  import * as TZbzd from "./zbzd";
54
56
  import * as TZfht from "./zfht";
55
57
  import * as TZfsq from "./zfsq";
56
- import * as TYzcq from "./yzcq";
57
58
 
58
59
  export {
59
60
  Const,
@@ -85,6 +86,7 @@ export {
85
86
  TJapz,
86
87
  TLoad,
87
88
  TMyoa,
89
+ TNote,
88
90
  TNoti,
89
91
  TPzpt,
90
92
  TResp,
@@ -103,13 +105,13 @@ export {
103
105
  TWzpz,
104
106
  TYzcb,
105
107
  TYzcg,
108
+ TYzcq,
106
109
  TYzht,
107
110
  TYzpz,
108
111
  TZbhd,
109
112
  TZbzd,
110
113
  TZfht,
111
114
  TZfsq,
112
- TYzcq,
113
115
  type IAboutConfig,
114
116
  type IBaseConfig,
115
117
  type IBaseResponse,
@@ -25,6 +25,8 @@ export interface IYzhtDzmxResponse {
25
25
  dzenMode: number;
26
26
  /** 比例/金额 */
27
27
  outMoney: number;
28
+ /** 递增后租金 */
29
+ newMoney: number;
28
30
 
29
31
  thirdApp: string;
30
32
  }
@@ -56,6 +58,8 @@ export class TYzhtDzmxResponse implements IYzhtDzmxResponse {
56
58
  dzenMode: number = 0;
57
59
  /** 比例/金额 */
58
60
  outMoney: number = 0;
61
+ /** 递增后租金 */
62
+ newMoney: number = 0;
59
63
 
60
64
  thirdApp: string = "";
61
65
  }