35 lines
625 B
Java
35 lines
625 B
Java
package com.engine.bjcj220907.constant;
|
|
|
|
/**
|
|
* @author Harryxzy
|
|
* @date 2022/11/01 17:08
|
|
* @description 人员标识常量
|
|
*/
|
|
public class EmployeeIdentifiedConstant {
|
|
|
|
/**
|
|
* 员工入职状态
|
|
*/
|
|
public static final int EMPLOYEE_STATE_RZ = 1 ;
|
|
/**
|
|
* 员工转正状态
|
|
*/
|
|
public static final int EMPLOYEE_STATE_ZZ = 2 ;
|
|
/**
|
|
* 员工调动状态
|
|
*/
|
|
public static final int EMPLOYEE_STATE_DD = 3 ;
|
|
|
|
/**
|
|
* 境内员工
|
|
*/
|
|
public static final int JN_EMPLOYEE = 0 ;
|
|
|
|
/**
|
|
* 境外员工
|
|
*/
|
|
public static final int JW_EMPLOYEE = 1 ;
|
|
|
|
|
|
}
|