forked from ps2hc5nfx/youxi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
16 lines
360 B
package com.ischoolbar.programmer.dao.admin;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.ischoolbar.programmer.entity.admin.Authority;
|
|
|
|
|
|
@Repository
|
|
public interface AuthorityDao {
|
|
public int add(Authority authority);
|
|
public int deleteByRoleId(Long roleId);
|
|
public List<Authority> findListByRoleId(Long roleId);
|
|
}
|