Files
ks/ruoyi-bussiness/src/main/java/com/ruoyi/cms/service/EmployeeConfirmService.java
sh 2f28aa9c4d 1.我的简历-用户工作经历表
2.敏感词库
3.新入职员工确认信息等对应后台功能
2025-10-10 18:45:44 +08:00

25 lines
502 B
Java

package com.ruoyi.cms.service;
import com.ruoyi.cms.domain.EmployeeConfirm;
import java.util.List;
/**
* 新入职员工确认信息
*
* @author
* @email
* @date 2025-10-10 10:42:16
*/
public interface EmployeeConfirmService {
List<EmployeeConfirm> getEmployeeConfirmList(EmployeeConfirm employeeConfirm);
int insertEmployeeConfirm(EmployeeConfirm employeeConfirm);
int updateEmployeeConfirm(EmployeeConfirm employeeConfirm);
int deleteEmployeeConfirmIds(Long[] ids);
}