16 lines
333 B
Java
16 lines
333 B
Java
package com.bbyb.operating.examination.mapper;
|
|
|
|
import com.bbyb.operating.examination.model.po.Role;
|
|
import java.util.List;
|
|
|
|
public interface RoleMapper {
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
int insert(Role row);
|
|
|
|
Role selectByPrimaryKey(Integer id);
|
|
|
|
List<Role> selectAll();
|
|
|
|
int updateByPrimaryKey(Role row);
|
|
} |