mybatis-plus的Model、BaseMapper、Iservice的用法
1、Model:使用映射类pojo继承model,直接使用该类可以进行CRUD,但是必须存在对应的mapper继承BaseMapper;2、BaseMapper和IserviceBaseMapper是使用dao层数据进行CRUD,只需要进行使用dao层接口继承BaseMapper即可;Iservice是使用service层进行CRUD,需要使用service接口继承Iservice,并且servi
·
1、Model:使用映射类pojo继承model,直接使用该类可以进行CRUD,但是必须存在对应的mapper继承BaseMapper;
2、BaseMapper和Iservice
BaseMapper是使用dao层数据进行CRUD,只需要进行使用dao层接口继承BaseMapper即可;
Iservice是使用service层进行CRUD,需要使用service接口继承Iservice,并且service接口的实现类要继承ServiceImpl<xxxMapper,pojo>;
BaseMapper和Iservice里面提供的方法都差不多,只是Iservice提供了批量操作的实现,比如: 批量添加、批量修改。
更多推荐
已为社区贡献8条内容
所有评论(0)