@ningboyz/types 1.7.14 → 1.7.16
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
|
@@ -55,8 +55,11 @@ export interface IDictResponseDictPara {
|
|
|
55
55
|
usesResizePdf: boolean;
|
|
56
56
|
/** 是否锁数据,(可以用来判断不允许删除数据) */
|
|
57
57
|
locked: boolean;
|
|
58
|
+
/** 是否 减员原因的字段选择 */
|
|
59
|
+
reduceReasonDict: boolean;
|
|
60
|
+
/** 是否人员调动后的人员职务类别的字典 */
|
|
61
|
+
userMovedDict: boolean;
|
|
58
62
|
}
|
|
59
|
-
|
|
60
63
|
export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
61
64
|
step: number = 0;
|
|
62
65
|
zb: boolean = false;
|
|
@@ -101,6 +104,10 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
101
104
|
usesResizePdf: boolean = false;
|
|
102
105
|
/** 是否锁数据,(可以用来判断不允许删除数据) */
|
|
103
106
|
locked: boolean = false;
|
|
107
|
+
/** 是否 减员原因的字段选择 */
|
|
108
|
+
reduceReasonDict: boolean = false;
|
|
109
|
+
/** 是否人员调动后的人员职务类别的字典 */
|
|
110
|
+
userMovedDict: boolean = false;
|
|
104
111
|
}
|
|
105
112
|
|
|
106
113
|
export interface IFormFieldObj {
|
|
@@ -136,6 +136,9 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
|
|
|
136
136
|
gnkmCode: string; //功能科目
|
|
137
137
|
gnkmName: string; //功能科目
|
|
138
138
|
gzdfType: number; // 是否启用工资代发
|
|
139
|
+
finaCode: string; //财政人事编码
|
|
140
|
+
directly: number; //是否直属
|
|
141
|
+
verifyD1: number; // 校验人事工资数据
|
|
139
142
|
listPath: TCore.IPathResponse[];
|
|
140
143
|
}
|
|
141
144
|
|
|
@@ -221,6 +224,9 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
221
224
|
gnkmCode: string = ""; //功能科目
|
|
222
225
|
gnkmName: string = ""; //功能科目
|
|
223
226
|
gzdfType: number = 0; // 是否启用工资代发
|
|
227
|
+
finaCode: string = ""; //财政人事编码
|
|
228
|
+
directly: number = 0; //是否直属
|
|
229
|
+
verifyD1: number = 0; // 校验人事工资数据
|
|
224
230
|
listPath: TCore.IPathResponse[] = [];
|
|
225
231
|
|
|
226
232
|
constructor(card: any = {}) {
|