ZhuDongming
2019-12-09 bc6a7cf68da9eaf2ba53d23d83d4d73ec76a7b86
src/main/java/com/moral/mapper/RoleMapper.java
@@ -2,16 +2,13 @@
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.moral.common.mapper.BaseMapper;
import com.moral.entity.Role;
import tk.mybatis.mapper.entity.Example;
public interface RoleMapper extends BaseMapper<Role> {
    int insertSelective(Role role);
    List<Role> getRoleList(Example example);
    int updateByPrimaryKeySelective(Role role);
    List<Role> getRoleList(@Param("roleName") String roleName);
}