@ningboyz/types 1.6.55 → 1.6.57

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.55",
4
+ "version": "1.6.57",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -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) {
@@ -67,6 +67,8 @@ export interface IWtuiUserCnfgResponse {
67
67
  colCount: number;
68
68
  realPage: number; //当前选择页签
69
69
  cnfgPara: string;
70
+ unitMain: number;
71
+ unitText: string;
70
72
  billMain: number;
71
73
  colWidth: IWtuiColWidthResponse[];
72
74
  listUnit: IUnitResponse[];
@@ -112,6 +114,8 @@ export class TWtuiUserCnfgResponse implements IWtuiUserCnfgResponse {
112
114
  colCount: number = 0;
113
115
  realPage: number = 0;
114
116
  cnfgPara: string = "";
117
+ unitMain: number = 0;
118
+ unitText: string = "";
115
119
  billMain: number = 0;
116
120
  colWidth: TWtuiColWidthResponse[] = [];
117
121
  listUnit: IUnitResponse[] = [];
@@ -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[] = [];