You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main/main/java/com/esms/service/IUserInforService.java

22 lines
713 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.esms.service;
import com.esms.exception.CustomException;
import com.esms.po.Employee;
import com.esms.vo.EmployeeCustomVo;
import com.esms.po.Salary;
import com.esms.po.SystemManager;
import java.util.List;
/**
* @Description
*/
public interface IUserInforService {
public void updateSystemManagePassword(int id, SystemManager systemManager);
public void updateEmployeePassword(int id, String oldPassword, String newPassword) throws CustomException;
public EmployeeCustomVo getInforEmployee(int id);
public int updateEmploueeById(int id, Employee employee);
// 查找员工个人的某年工资记录
public List<Salary> getEmployeeSalaryList(int eId, String year);
}