TWW
2025-08-08 81aa0cb2a8f563075eef1d4101024c3fd9cb2205
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.personnelManagement.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.personnelManagement.pojo.EmployeeContract;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * 员工合同信息Service接口
 * 
 * @author ruoyi
 * @date 2025-08-08
 */
public interface IEmployeeContractService extends IService<EmployeeContract>
{
 
 
    IPage<EmployeeContract> contractList(Page page, EmployeeContract employeeContract);
 
 
    int insertContract(EmployeeContract employeeContract);
}