kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.nanometer.smartlab.service;
 
import com.nanometer.smartlab.entity.BaseRolePage;
 
import java.util.List;
 
/**
 * Created by johnny on 17/11/20.
 */
public interface BaseRolePageService {
 
    public List<BaseRolePage> getBaseRolePageList(Long roleId, Long pageId);
    public BaseRolePage insertBaseRolePage(BaseRolePage baseRolePage);
    public boolean deleteBaseRolePage(Long roleId);
 
    public void batchInsertBaseRolePage(List<BaseRolePage> baseRolePages);
}