| 1234567891011121314151617181920212223242526 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttRoleBase;
- import cn.com.goldenwater.dcproj.param.AttRoleBaseParam;
- import cn.com.goldenwater.dcproj.param.RolePrivParam;
- import com.github.pagehelper.PageInfo;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-2-19
- */
- public interface AttRoleBaseService extends CrudService<AttRoleBase, AttRoleBaseParam> {
- // ------------------------- 自定方法 -------------------------
- void insertRole(AttRoleBase attRoleBase, ArrayList<RolePrivParam> rolePrivParams, RolePrivParam param);
- void updateRole(AttRoleBase attRoleBase, ArrayList<RolePrivParam> rolePrivParams, RolePrivParam param);
- List<AttRoleBase> getRoleByUserId(String guid);
- }
|