@ningboyz/types 1.2.63 → 1.2.64

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.63",
4
+ "version": "1.2.64",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -85,6 +85,7 @@ export interface IUserAcnoResponse extends IBaseResponse<IUserAcnoResponse> {
85
85
  wbField2: string; // 开票地址
86
86
  wbField3: string; // 开票电话
87
87
  usciCode: string; // 征信代码
88
+ acnoYhmc: string;
88
89
  }
89
90
 
90
91
  export class TUserAcnoResponse extends TBaseResponse<IUserAcnoResponse> implements IUserAcnoResponse {
@@ -162,6 +163,7 @@ export class TUserAcnoResponse extends TBaseResponse<IUserAcnoResponse> implemen
162
163
  wbField1: string = ""; // 区域
163
164
  wbField2: string = ""; // 开票地址
164
165
  wbField3: string = ""; // 开票电话
166
+ acnoYhmc: string = ""
165
167
 
166
168
  constructor(response?: any) {
167
169
  super();
@@ -167,6 +167,11 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
167
167
  listBill: IHzcbXmtzBillResponse[] = [];
168
168
  listPath: IPathResponse[] = [];
169
169
 
170
+ static toFlowDatas(card: THzcbXmtzResponse[]): TFlowDataResponse[] {
171
+ return card.map((u) => this.toFlowData(u));
172
+ }
173
+
174
+
170
175
  static toFlowData(xmtz: THzcbXmtzResponse): TFlowDataResponse {
171
176
  let result = new TFlowDataResponse();
172
177
  result.whoBuild = xmtz.whoBuild;