@ningboyz/types 1.7.118 → 1.7.119

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.7.118",
4
+ "version": "1.7.119",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -64,6 +64,8 @@ export interface IGztbMainResponse {
64
64
  usesFromType: number;
65
65
  /** 工资填报状态 */
66
66
  gztbStat: number;
67
+ // 人数
68
+ userSize: number;
67
69
 
68
70
  listTask: ITaskMainResponse[];
69
71
  listYSDW: IUnitResponse[];
@@ -137,6 +137,7 @@ export interface IViewCtrlResponseWithParaConv {
137
137
  yzhtUUID?: string; //其他页面的UUID
138
138
  outboundMenuUUID?: string; //出库登记菜单的menuUUID,配置在下发功能菜单.取关联单使用
139
139
  sysclasc: number;
140
+ taskMain: number;
140
141
  }
141
142
 
142
143
  export class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaConv {
@@ -163,4 +164,5 @@ export class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaC
163
164
  yzhtUUID?: string = ""; //其他页面的UUID
164
165
  outboundMenuUUID?: string = ""; //出库登记菜单的menuUUID,配置在下发功能菜单.取关联单使用
165
166
  sysclasc: number = 0;
167
+ taskMain: number = 0;
166
168
  }