add
gdg
2020-10-30 9222b2db700cd25e46b67c2a3c05fffd3817cc64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.nanometer.smartlab.service;
 
import com.nanometer.smartlab.entity.BaseRole;
 
import java.util.List;
 
/**
 * Created by johnny on 17/11/18.
 */
public interface BaseRoleService {
 
    public List<BaseRole> getBaseRoleList(String name, String memo, Integer first, Integer pageSize);
    public List<BaseRole> getBaseRoleList();
    public int getBaseRoleTotalCount(String name, String memo);
    public BaseRole getBaseRole(String id);
    public boolean isBaseRoleExist(String name, String editId);
    public BaseRole insertBaseRole(BaseRole baseRole);
    public boolean updateBaseRole(BaseRole baseRole);
    public boolean deleteBaseRole(List<BaseRole> baseRoleList);
}