package com.gkhy.exam.system.service;
|
|
import com.gkhy.exam.common.api.CommonPage;
|
import com.gkhy.exam.common.api.CommonResult;
|
import com.gkhy.exam.system.domain.CustomerRecord;
|
import com.gkhy.exam.system.domain.EmployeeRecord;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gkhy.exam.system.domain.req.EmployeeRecordReq;
|
|
/**
|
* <p>
|
* 人员档案 服务类
|
* </p>
|
*
|
* @author hh
|
* @since 2025-11-11 13:54:12
|
*/
|
public interface EmployeeRecordService extends IService<EmployeeRecord> {
|
|
CommonPage selectEmployeeRecordList(EmployeeRecordReq req);
|
|
|
CommonResult saveEmployeeRecord(EmployeeRecord employeeRecord);
|
|
CommonResult getEmployeeRecordList(Long companyId);
|
|
}
|