@ningboyz/types 1.6.139 → 1.6.141

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.6.139",
4
+ "version": "1.6.141",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -1,10 +1,7 @@
1
1
  import { construct, destruct } from "@aximario/json-tree";
2
2
  import _ from "lodash";
3
- import type { IBaseResponse } from "../base/IBaseResponse";
4
- import { TBaseResponse } from "../base/IBaseResponse";
5
- import { TCore } from "../index.ts";
6
- import type { IDictResponse } from "./IDictResponse";
7
- import { IUserLiteResponse } from "./IUserLiteResponse.ts";
3
+ import { IBaseResponse, TCore } from "../index.ts";
4
+ import { TBaseResponse } from "../base/IBaseResponse.ts";
8
5
 
9
6
  export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
10
7
  codeFull: string;
@@ -75,11 +72,12 @@ export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
75
72
  deptPara: string;
76
73
 
77
74
  /** 部门类型 */
78
- listBMLX: IDictResponse[];
75
+ listBMLX: TCore.IDictResponse[];
79
76
  /** 部门类型(新) */
80
- listType: IDictResponse[];
77
+ listType: TCore.IDictResponse[];
81
78
  /** 部门用户 */
82
- listUser: IUserLiteResponse[];
79
+ listUser: TCore.IUserLiteResponse[];
80
+ listGKBM: TCore.IDeptResponse[];
83
81
  }
84
82
 
85
83
  export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDeptResponse {
@@ -142,11 +140,12 @@ export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDept
142
140
  k2kmKmbm: string = "";
143
141
 
144
142
  /** 部门类型 */
145
- listBMLX: IDictResponse[] = [];
143
+ listBMLX: TCore.IDictResponse[] = [];
146
144
  /** 部门类型(新) */
147
- listType: IDictResponse[] = [];
145
+ listType: TCore.IDictResponse[] = [];
148
146
  /** 部门用户 */
149
- listUser: IUserLiteResponse[] = [];
147
+ listUser: TCore.IUserLiteResponse[] = [];
148
+ listGKBM: TCore.IDeptResponse[] = [];
150
149
 
151
150
  constructor(data: any = {}) {
152
151
  super();
@@ -78,7 +78,7 @@ export interface IHznkFytqResponse {
78
78
  userGUID: string;
79
79
  totalVal: number;
80
80
  fromUserIndx: number;
81
- outMoney: number;
81
+ outReady: number;
82
82
  /**附件 */
83
83
  listPath: TCore.IPathResponse[];
84
84
  /**关联项目 */
@@ -153,7 +153,7 @@ export class THznkFytqResponse implements IHznkFytqResponse {
153
153
  userName: string = "";
154
154
  userGUID: string = "";
155
155
  totalVal: number = 0;
156
- outMoney: number = 0;
156
+ outReady: number = 0;
157
157
  listPath: TCore.IPathResponse[] = [];
158
158
  listFrom: THznk.IHznkFydwBillResponse[] = [];
159
159
  listSKDW: TCore.IUserAcnoResponse[] = [];