@ningboyz/types 1.6.2 → 1.6.4
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
|
@@ -167,12 +167,15 @@ export interface IUserResponse extends IBaseResponse<IUserResponse> {
|
|
|
167
167
|
supplyBy: number;
|
|
168
168
|
/** 在岗状态 */
|
|
169
169
|
workStat: number;
|
|
170
|
+
|
|
170
171
|
workTypeText: string;
|
|
171
172
|
rankLevlText: string;
|
|
172
173
|
rankCodeText: string;
|
|
173
174
|
supplyByText: string;
|
|
174
175
|
workStatText: string;
|
|
175
176
|
acnoTypeText: string;
|
|
177
|
+
/**退休日期 */
|
|
178
|
+
userTxrq: number;
|
|
176
179
|
|
|
177
180
|
listHardware: any[];
|
|
178
181
|
listSysPartc: any[];
|
|
@@ -329,7 +332,7 @@ export class TUserResponse extends TBaseResponse<IUserResponse> implements IUser
|
|
|
329
332
|
get4unitText: string = "";
|
|
330
333
|
queuesBy: number = 0;
|
|
331
334
|
acnoTypeText: string = "";
|
|
332
|
-
|
|
335
|
+
userTxrq: number = 0;
|
|
333
336
|
userDeptList: [] = [];
|
|
334
337
|
userRylxList: [] = [];
|
|
335
338
|
|
|
@@ -43,7 +43,8 @@ export interface IGztbMainResponse {
|
|
|
43
43
|
onStatus: number;
|
|
44
44
|
/** 表体对象,1:单位,2:部门,3:人员,4:字典 */
|
|
45
45
|
bodyFill: number;
|
|
46
|
-
|
|
46
|
+
/**计划名称 */
|
|
47
|
+
gztbName: string;
|
|
47
48
|
taskMain: number;
|
|
48
49
|
taskName: string;
|
|
49
50
|
gzjgText: string;
|
|
@@ -53,6 +54,12 @@ export interface IGztbMainResponse {
|
|
|
53
54
|
unitIndx: number[];
|
|
54
55
|
limitVal: number;
|
|
55
56
|
gztbDate: number;
|
|
57
|
+
|
|
58
|
+
startCnt: number;
|
|
59
|
+
endedCnt: number;
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
56
63
|
listTask: ITaskMainResponse[];
|
|
57
64
|
listYSDW: IUnitResponse[];
|
|
58
65
|
listYSBM: IDeptResponse[];
|
|
@@ -108,6 +115,9 @@ export class TGztbMainResponse implements IGztbMainResponse {
|
|
|
108
115
|
limitVal: number = 0;
|
|
109
116
|
taskIndx: number[] = [];
|
|
110
117
|
unitIndx: number[] = [];
|
|
118
|
+
gztbName: string = "";
|
|
119
|
+
startCnt: number = 0;
|
|
120
|
+
endedCnt: number = 0;
|
|
111
121
|
|
|
112
122
|
listTask: ITaskMainResponse[] = [];
|
|
113
123
|
listYSDW: IUnitResponse[] = [];
|
|
@@ -77,6 +77,8 @@ export interface ITablMainResponse {
|
|
|
77
77
|
userMain: number;
|
|
78
78
|
usesAuto?: number;
|
|
79
79
|
tablMode: number;
|
|
80
|
+
// 计划名称
|
|
81
|
+
tablName: string;
|
|
80
82
|
listData: Array<ITablDataResponse>;
|
|
81
83
|
listPath: TCore.IPathResponse[];
|
|
82
84
|
listWZK8: ITablWzk8Response[];
|
|
@@ -154,6 +156,7 @@ export class TTablMainResponse implements ITablMainResponse {
|
|
|
154
156
|
taskMain: number = 0;
|
|
155
157
|
userMain: number = 0;
|
|
156
158
|
tablMode: number = 0;
|
|
159
|
+
tablName: string = "";
|
|
157
160
|
listData: Array<ITablDataResponse> = [];
|
|
158
161
|
listPath: TCore.IPathResponse[] = [];
|
|
159
162
|
listWZK8: ITablWzk8Response[] = [];
|