@ningboyz/types 1.7.15 → 1.7.17
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
|
@@ -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 = {}) {
|