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.

16 lines
519 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.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);
}