@ningboyz/types 1.6.56 → 1.6.58

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.56",
4
+ "version": "1.6.58",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -31,6 +31,8 @@ export interface IZczjPropResponse {
31
31
  deleteAt: number;
32
32
  queuesBy: number;
33
33
  entityID: string;
34
+ // 所属部门名称
35
+ cardDeptText: string;
34
36
  /** 月折旧额 */
35
37
  cardYzje: number;
36
38
  /** 资产原值 */
@@ -75,6 +77,7 @@ export class TZczjPropResponse implements IZczjPropResponse {
75
77
  createBy: string = "";
76
78
  createAt: number = 0;
77
79
  updateBy: string = "";
80
+ cardDeptText: string = "";
78
81
  updateAt: number = 0;
79
82
  deleteBy: string = "";
80
83
  deleteAt: number = 0;
@@ -1,5 +1,6 @@
1
1
  import _ from "lodash";
2
2
  import { IPathResponse } from "./IPathResponse";
3
+ import { TCore } from "..";
3
4
 
4
5
  export interface IUserLiteResponse {
5
6
  whoBuild: number; //#用户实例
@@ -75,6 +76,7 @@ export interface IUserLiteResponse {
75
76
  rankText: string;
76
77
  userDeptText: string;
77
78
  listPath: IPathResponse[];
79
+ listUserType: TCore.IDictResponse[]
78
80
 
79
81
  }
80
82
 
@@ -155,6 +157,7 @@ export class TUserLiteResponse implements IUserLiteResponse {
155
157
  rankText: string = "";
156
158
  userDeptText: string = "";
157
159
  listPath: IPathResponse[] = [];
160
+ listUserType: TCore.IDictResponse[] = [];
158
161
 
159
162
  constructor(data: Partial<IUserLiteResponse> = {}) {
160
163
  if (data) {
@@ -76,9 +76,11 @@ export interface IWzpzK8kmResponse {
76
76
  k8kmKmdj: number;
77
77
  canEmpty: number; // 是否可以为空 0代表为必填,1代表非必填
78
78
  limitCnt: number; // 限制数量
79
+ rankText: string;
79
80
  // 供应商
80
81
  k8kmSccs: string;
81
82
  listDict: TCore.IDictResponse[];
83
+ listRank: TCore.IDictResponse[];
82
84
  children: IWzpzK8kmResponse[];
83
85
  listDept: TCore.IDeptResponse[];
84
86
  listItem: IWzpzItemResponse[];
@@ -158,7 +160,8 @@ export class TWzpzK8kmResponse implements IWzpzK8kmResponse {
158
160
  k8kmSccs: string = "";
159
161
  canEmpty: number = 0;
160
162
  limitCnt: number = 0;
161
-
163
+ rankText: string = "";
164
+ listRank: TCore.IDictResponse[] = [];
162
165
  listDict: TCore.IDictResponse[] = [];
163
166
 
164
167
  children: IWzpzK8kmResponse[] = [];