@ningboyz/types 1.7.39 → 1.7.41
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
package/src/const/index.ts
CHANGED
|
@@ -33,6 +33,7 @@ import * as ErrorKey from "./const_error_key";
|
|
|
33
33
|
import * as PageMode from "./const_page_mode";
|
|
34
34
|
import * as Read from "./const_read";
|
|
35
35
|
import * as Hznk from "./const_hznk";
|
|
36
|
+
import * as Gzjg from "./const_gzjg";
|
|
36
37
|
|
|
37
38
|
export {
|
|
38
39
|
Align,
|
|
@@ -67,7 +68,8 @@ export {
|
|
|
67
68
|
ErrorKey,
|
|
68
69
|
PageMode,
|
|
69
70
|
Read,
|
|
70
|
-
Hznk
|
|
71
|
+
Hznk,
|
|
72
|
+
Gzjg
|
|
71
73
|
};
|
|
72
74
|
|
|
73
75
|
export type ModuleType = (typeof ConstModuleType)[keyof typeof ConstModuleType];
|
|
@@ -34,6 +34,8 @@ export interface IFlowNodeResponseNodePara {
|
|
|
34
34
|
pathType: pathTypeControl[];
|
|
35
35
|
/** 默认审核用户 */
|
|
36
36
|
defaultAuditUser: number;
|
|
37
|
+
/** 招聘计划是否可修改,true:本次招聘数可修改,招聘结果确认不可确认。false:本次招聘数不可修改,招聘结果确认可确认 */
|
|
38
|
+
recruitPlanUpdate: boolean;
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
export class TFlowNodeResponseNodePara implements IFlowNodeResponseNodePara {
|
|
@@ -42,6 +44,7 @@ export class TFlowNodeResponseNodePara implements IFlowNodeResponseNodePara {
|
|
|
42
44
|
pathType: pathTypeControl[] = [];
|
|
43
45
|
/** 默认审核用户 */
|
|
44
46
|
defaultAuditUser: number = 0;
|
|
47
|
+
recruitPlanUpdate: boolean = false;
|
|
45
48
|
}
|
|
46
49
|
|
|
47
50
|
export interface IFlowNodeResponse {
|