📄 groupdao.java
字号:
/*
* Created on 2007-2-23
* Last modified on 2007-2-23
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.dao;
import com.yeqiangwei.club.dao.model.Group;
import com.yeqiangwei.club.exception.DAOException;
import com.yeqiangwei.club.param.GroupParameter;
/**
* 用户组可关联N种权限角色
* @author yeqiangwei
*/
public interface GroupDAO extends BaseDAO<Group, GroupParameter>{
public int updateRegisterDefaultNoId(int groupId, boolean registerDefault) throws DAOException;
public int updateGuestDefaultNoId(int groupId, boolean guestDefault) throws DAOException;
public Group findByGuestDefault();
public Group findByRegisterDefault();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -