@ningboyz/types 1.2.124 → 1.2.125

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/index.ts CHANGED
@@ -43,6 +43,7 @@ import * as Decorators from "./src/decorators";
43
43
  import * as TJapz from "./src/japz";
44
44
  import * as TBill from "./src/bill";
45
45
  import * as THznk from "./src/hznk";
46
+ import * as THznj from "./src/hznj";
46
47
 
47
48
  export {
48
49
  Const,
@@ -86,6 +87,7 @@ export {
86
87
  TJapz,
87
88
  TBill,
88
89
  THznk,
90
+ THznj,
89
91
  type IAboutConfig,
90
92
  type IBaseConfig,
91
93
  type IBaseResponse,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.2.124",
4
+ "version": "1.2.125",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -59,7 +59,7 @@ export interface IUserAcnoResponse extends IBaseResponse<IUserAcnoResponse> {
59
59
  heavyVal: number;
60
60
  mobileID: string;
61
61
  dataType: number; // 0:收款单位 2:付款单位
62
-
62
+ billCnfg: number; //银行配置
63
63
  userAddr: string;
64
64
  creditOf: number;
65
65
  creditBy: string;
@@ -164,7 +164,7 @@ export class TUserAcnoResponse extends TBaseResponse<IUserAcnoResponse> implemen
164
164
  zbdwXmfzr: string = "";
165
165
  wContact: string = "";
166
166
  dContact: string = "";
167
-
167
+ billCnfg: number = 0;
168
168
  wbField0: string = ""; // 性质
169
169
  wbField1: string = ""; // 区域
170
170
  wbField2: string = ""; // 开票地址
@@ -0,0 +1,12 @@
1
+ import { IHznjBaseResponse, THznjBaseResponse } from "./IHznjBaseResponse";
2
+ import { IHznjBasePathResponse, THznjBasePathResponse } from "./IHznjBasePathResponse";
3
+ import { IHznjBaseItemResponse, THznjBaseItemResponse } from "./IHznjBaseItemResponse";
4
+
5
+ export {
6
+ THznjBaseResponse,
7
+ THznjBasePathResponse,
8
+ THznjBaseItemResponse,
9
+ type IHznjBaseResponse,
10
+ type IHznjBasePathResponse,
11
+ type IHznjBaseItemResponse,
12
+ };