审查视图

src/main/java/com/tianbo/warehouse/service/RoleService.java 635 字节
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
朱兆平 authored
7 8
import java.util.List;
9
public interface RoleService {
10
    PageInfo<ROLE> findAll(int pageNum, int pageSize, String roleName, String type);
11
朱兆平 authored
12 13
    public PageInfo<ROLE> orgSelectWithRootNoTree(ROLE role,int pageNum, int pageSize);
朱兆平 authored
14 15
    List<ROLE> getROLE_anonymousPermList();
16
    int insertSelective(ROLE record);
朱兆平 authored
17 18

    int setRolePermissoin(RolePermission record);
shenhailong authored
19 20 21 22

    int updateByPrimaryKeySelective(ROLE role);

    int deleteByPrimaryKey(Integer departmentId);
23
}