@ningboyz/types 1.7.66 → 1.7.67
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
|
@@ -36,6 +36,8 @@ export interface IFlowNodeResponseNodePara {
|
|
|
36
36
|
defaultAuditUser: number;
|
|
37
37
|
/** 招聘计划是否可修改,true:本次招聘数可修改,招聘结果确认不可确认。false:本次招聘数不可修改,招聘结果确认可确认 */
|
|
38
38
|
recruitPlanUpdate: boolean;
|
|
39
|
+
/** 招聘计划审核时是否可选择招聘结果用户 */
|
|
40
|
+
recruitPlanChooseUser: boolean;
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
export class TFlowNodeResponseNodePara implements IFlowNodeResponseNodePara {
|
|
@@ -45,6 +47,7 @@ export class TFlowNodeResponseNodePara implements IFlowNodeResponseNodePara {
|
|
|
45
47
|
/** 默认审核用户 */
|
|
46
48
|
defaultAuditUser: number = 0;
|
|
47
49
|
recruitPlanUpdate: boolean = false;
|
|
50
|
+
recruitPlanChooseUser: boolean = false;
|
|
48
51
|
}
|
|
49
52
|
|
|
50
53
|
export interface IFlowNodeResponse {
|