@ningboyz/types 1.7.118 → 1.7.120
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
|
@@ -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[];
|
|
@@ -126,6 +128,7 @@ export class TGztbMainResponse implements IGztbMainResponse {
|
|
|
126
128
|
|
|
127
129
|
usesFromType: number = 0;
|
|
128
130
|
gztbStat: number = 0;
|
|
131
|
+
userSize: number = 0;
|
|
129
132
|
listPath: TCore.IPathResponse[] = [];
|
|
130
133
|
listTask: ITaskMainResponse[] = [];
|
|
131
134
|
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
|
}
|