当前位置: 首页 > 工具软件 > fast-dao > 使用案例 >

renren-fast 学习记录

穆歌者
2023-12-01

背景:
renren-fast框架, win10
项目部署:

https://www.renren.io/guide

调用框架提供的现有方法:
renren 在 IService接口中提供了增删改查等基础功能方法,例如:save(保存)、saveBatch(批量插入)、removeById(根据id删除)、update(更新记录)。。。
使用方法:
1、首先需要在service 接口中级车IService

public interface ExcelImExportService extends *IService*<**excelEntity**>

注:excelEntity 是指定需要调用的实体类

2、在impl实现类中继承 ServiceImpl

public class ExcelImExportServiceImpl  extends *ServiceImpl*<excelDao, excelEntity>  implements ExcelImExportService 

注:excelDao, excelEntity 对应的是dao and Entity.

3、现在就可以直接使用上面提到的方法了,例如:

 List<excelEntity> list1 = this.list(new QueryWrapper<excelEntity>());
 类似资料: