liuliang
parent
8933227ebb
commit
481c1d2ceb
@ -0,0 +1,33 @@
|
|||||||
|
package com.engine.attendance.enums;
|
||||||
|
|
||||||
|
import com.finance.toolkit.BaseEnum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 适用组织-对象类型
|
||||||
|
*/
|
||||||
|
public enum ApplicableOrganizationEnum implements BaseEnum {
|
||||||
|
|
||||||
|
PERSONNEL("0","人员"),
|
||||||
|
PERSONNEL_GROUP("1","人员分组"),
|
||||||
|
DEPARTMENT("2","部门"),
|
||||||
|
SUBCOMPANY("3","分部");
|
||||||
|
|
||||||
|
private String key;
|
||||||
|
private String value;
|
||||||
|
|
||||||
|
ApplicableOrganizationEnum(String key, String value){
|
||||||
|
this.key=key;
|
||||||
|
this.value=value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getKey() {
|
||||||
|
|
||||||
|
return this.key;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getValue() {
|
||||||
|
return this.value;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package com.engine.attendance.vacation.service;
|
||||||
|
|
||||||
|
import weaver.hrm.User;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public interface vocationService {
|
||||||
|
Map<String,Object> getHrmCondition(Map<String,Object> params, User user);
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue