MenuDao.java 373 Bytes
Newer Older
Fred's avatar
Fred committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.govmade.modules.system.dao;


import org.apache.ibatis.annotations.Mapper;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.govmade.modules.system.entity.MenuEntity;

/**
 * 系统管理 - 菜单设置
 * 
 * @author Fred
 * @email fangtaosh@qq.com
 * @date 2018年8月9日
 */
@Mapper
public interface MenuDao extends BaseMapper<MenuEntity> {
	
}