@ningboyz/types 1.3.113 → 1.3.114

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.113",
4
+ "version": "1.3.114",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -68,6 +68,10 @@ export interface IUserLiteResponse {
68
68
  zbdwText: string;
69
69
  /**数据分类文本 (作者|通讯作者) */
70
70
  dataUses: string;
71
+ /**排名字典ID */
72
+ rankMain: number;
73
+ /**排名名称 */
74
+ rankText: string;
71
75
  }
72
76
 
73
77
  export class TUserLiteResponse implements IUserLiteResponse {
@@ -142,6 +146,9 @@ export class TUserLiteResponse implements IUserLiteResponse {
142
146
  zbdwText: string = "";
143
147
  /**数据分类文本 (作者|通讯作者) */
144
148
  dataUses: string = "";
149
+ rankMain: number = 0;
150
+ /**排名名称 */
151
+ rankText: string = "";
145
152
 
146
153
  constructor(data: Partial<IUserLiteResponse> = {}) {
147
154
  if (data) {