@ningboyz/types 1.7.40 → 1.7.42
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/const_gzjg.ts
CHANGED
|
@@ -2,3 +2,9 @@
|
|
|
2
2
|
export const CONST_GZJG_UNION_TYPE_NULL = 0; // #空
|
|
3
3
|
export const CONST_GZJG_UNION_TYPE_UNION = 1; // #合集(或关系)
|
|
4
4
|
export const CONST_GZJG_UNION_TYPE_INTERSECTION = 2; // #交集(且关系)
|
|
5
|
+
|
|
6
|
+
// 人员排序
|
|
7
|
+
export const CONST_GZJG_QUEUES_AT_NULL = 0; // #默认按人员编码
|
|
8
|
+
export const CONST_GZJG_QUEUES_AT_CODE = 1; // #合集(或关系)
|
|
9
|
+
export const CONST_GZJG_QUEUES_AT_ORDER = 2; // #交集(且关系)
|
|
10
|
+
|
|
@@ -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 {
|