@ningboyz/types 1.3.148 → 1.3.149

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.3.148",
4
+ "version": "1.3.149",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -72,6 +72,7 @@ export interface IUserLiteResponse {
72
72
  rankMain: number;
73
73
  /**排名名称 */
74
74
  rankText: string;
75
+ userDeptText: string;
75
76
  }
76
77
 
77
78
  export class TUserLiteResponse implements IUserLiteResponse {
@@ -149,6 +150,7 @@ export class TUserLiteResponse implements IUserLiteResponse {
149
150
  rankMain: number = 0;
150
151
  /**排名名称 */
151
152
  rankText: string = "";
153
+ userDeptText: string = "";
152
154
 
153
155
  constructor(data: Partial<IUserLiteResponse> = {}) {
154
156
  if (data) {
@@ -141,5 +141,7 @@ export enum TButtonType {
141
141
  /**排序 */
142
142
  sort = "sort",
143
143
  /**作废 */
144
- revoke = "revoke"
144
+ revoke = "revoke",
145
+ /**归档 */
146
+ archive = "archive"
145
147
  }