package cn.com.basic.face.discern.baseapi.user;
|
|
import cn.com.basic.face.discern.user.entity.Department;
|
|
public interface DepartmentMapper {
|
int deleteByPrimaryKey(Integer id);
|
|
int insert(Department record);
|
|
int insertSelective(Department record);
|
|
Department selectByPrimaryKey(Integer id);
|
|
int updateByPrimaryKeySelective(Department record);
|
|
int updateByPrimaryKey(Department record);
|
}
|