package com.ruoyi.personnelManagement.service.impl;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import com.ruoyi.personnelManagement.mapper.EmployeeContractMapper;
|
import com.ruoyi.personnelManagement.pojo.EmployeeContract;
|
import com.ruoyi.personnelManagement.service.IEmployeeContractService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import java.util.Arrays;
|
/**
|
* 员工合同信息Service业务层处理
|
*
|
* @author ruoyi
|
* @date 2025-08-08
|
*/
|
@Service
|
public class EmployeeContractServiceImpl extends ServiceImpl<EmployeeContractMapper,EmployeeContract> implements IEmployeeContractService
|
{
|
@Autowired
|
private EmployeeContractMapper employeeContractMapper;
|
|
|
@Override
|
public IPage<EmployeeContract> contractList(Page page, EmployeeContract employeeContract) {
|
return employeeContractMapper.contractList(page, employeeContract);
|
}
|
|
|
|
@Override
|
public int insertContract(EmployeeContract employeeContract) {
|
return 0;
|
}
|
|
}
|