1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.iocoder.yudao.module.hrm.enums;
|
| /**
| * HRM 模块字典类型
| */
| public interface DictTypeConstants {
|
| String HRM_PERFORMANCE_PERIOD_TYPE = "hrm_performance_period_type";
|
| String HRM_PERFORMANCE_SCOPE_TYPE = "hrm_performance_scope_type";
|
| String HRM_PERFORMANCE_SCORER_TYPE = "hrm_performance_scorer_type";
|
| String HRM_PERFORMANCE_GRADE = "hrm_performance_grade";
|
| }
|
|