1234567891011121314151617181920212223 |
- package com.zglc.fm.dao;
- import com.zglc.fm.entity.RoleEntity;
- import org.springframework.stereotype.Repository;
- import tk.mybatis.mapper.common.Mapper;
- import java.util.List;
- /**
- * 角色
- *
- * @author wcf
- * @email mnhwa@163.com
- * @date 2020-02-14 01:33:53
- * @description Refactoring 1st
- *
- */
- @Repository
- public interface RoleDao extends Mapper<RoleEntity> {
- List<RoleEntity> listAll();
- List<RoleEntity> getByName(String name);
- }
|