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.po.SystemManager;
/**
* @Description:
*/
public interface ILoginService {
public Employee findEmployeeByIdAndPassword(String account, String password) throws CustomException;
public SystemManager findSystemManagerByIdAndPassword(String account, String password) throws CustomException;
public Employee findEmployeeById(int id);
public SystemManager findSystemManagerById(int id);
}