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/dao/EmployeeMapper.java

37 lines
765 B

package com.esms.dao;
import com.esms.po.Employee;
import java.util.List;
public interface EmployeeMapper {
int deleteByPrimaryKey(Integer eId);
int insert(Employee record);
int insertSelective(Employee record);
Employee selectByPrimaryKey(Integer eId);
int updateByPrimaryKeySelective(Employee record);
int updateByPrimaryKey(Employee record);
Employee selectByAccountAndPassword(Employee employee);
int countByDid(Integer eId);
int countByRbid(Integer eRank);
Employee selectByAccount(String eAcount);
// void deleteByQuery(int[] ids);
Employee findByeAccount(String eAccount);
List<Employee> selectAll();
int isExistEmployee(String eAccount);
int selectEidByEaccount(String eAccount);
}