//package org.springblade.modules.ureport.mapper; // //import com.baomidou.mybatisplus.core.mapper.BaseMapper; //import org.springblade.modules.ureport.entity.UReportFile; // //import java.util.List; // ///** // * 报表导出mapper映射层 // * @author zhongrj // */ //public interface ReportFileMappers extends BaseMapper { // // /** // * 根据报表名称检查报表是否存在 // * @param name 报表名称 // * @return // */ // int checkExistByName(String name); // // /** // * 根据报表名称查询报表 // * @param name 报表名称 // * @return // */ // UReportFile queryReportFileEntityByName(String name); // // /** // * 查询全部报表 // * @return // */ // List queryReportFileList(); // // /** // * 根据报表名称删除报表 // * @param name // * @return // */ // int deleteReportFileByName(String name); // // // /** // * 保存报表 // */ // int insertReportFile(UReportFile entity); // // /** // * 更新报表 // * @param entity // * @return // */ // int updateReportFile(UReportFile entity); // //}