入职离职初步完成
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.ruoyi.oa.mapper;
|
||||
|
||||
import com.ruoyi.oa.domain.EmployeeOffboarding;
|
||||
import com.ruoyi.oa.domain.vo.EmployeeOffboardingVo;
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 离职管理Mapper接口
|
||||
*
|
||||
* @author hdka
|
||||
* @date 2025-02-16
|
||||
*/
|
||||
public interface EmployeeOffboardingMapper extends BaseMapperPlus<EmployeeOffboardingMapper, EmployeeOffboarding, EmployeeOffboardingVo> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.ruoyi.oa.mapper;
|
||||
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.oa.domain.EmployeeOnboarding;
|
||||
import com.ruoyi.oa.domain.vo.EmployeeOnboardingVo;
|
||||
|
||||
/**
|
||||
* 入职管理Mapper接口
|
||||
*
|
||||
* @author hdka
|
||||
* @date 2025-02-15
|
||||
*/
|
||||
public interface EmployeeOnboardingMapper extends BaseMapperPlus<EmployeeOnboardingMapper, EmployeeOnboarding, EmployeeOnboardingVo> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user