审查视图

src/main/java/com/tianbo/warehouse/service/RoleService.java 477 字节
1 2 3 4
package com.tianbo.warehouse.service;

import com.github.pagehelper.PageInfo;
import com.tianbo.warehouse.model.ROLE;
朱兆平 authored
5
import com.tianbo.warehouse.model.RolePermission;
6 7

public interface RoleService {
8
    PageInfo<ROLE> findAll(int pageNum, int pageSize, String roleName, String type);
9 10

    int insertSelective(ROLE record);
朱兆平 authored
11 12

    int setRolePermissoin(RolePermission record);
shenhailong authored
13 14 15 16

    int updateByPrimaryKeySelective(ROLE role);

    int deleteByPrimaryKey(Integer departmentId);
17
}