Mybatis-Plus中getOne方法獲取最新一條數據的示例代碼
Mybatis-Plus中getOne方法獲取最新一條數據
一、代碼
1、Controller
@GetMapping("/queryNewProduct") public ProductDTO queryNewProduct(@RequestParam("type") String type) { return opProductService.queryNewProduct(type); }
2、Service
@Override public ProductDTO queryNewProduct(String type) { //以下出現的第一個入參boolean condition表示該條件是否加入最後生成的sql中, // 例如:query.like(StringUtils.isNotBlank(name), Entity::getName, name) // .eq(age!=null && age >= 0, Entity::getAge, age) OpProduct one = this.getOne(new LambdaQueryWrapper<OpProduct>() .eq(OpProduct::getType, type) .orderBy(true, false, OpProduct::getId) .last("limit 1") ); ProductDTO productDTO = BeanUtil.copyProperties(one, ProductDTO.class); return productDTO; }
3、效果
到此這篇關於Mybatis-Plus中getOne方法獲取最新一條數據的文章就介紹到這瞭,更多相關Mybatis-Plus獲取最新一條數據內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- MybatisPlus實現分頁查詢和動態SQL查詢的示例代碼
- JPA findById方法和getOne方法的區別說明
- SpringBoot MyBatis簡單快速入門例子
- mybatis新增save結束後自動返回主鍵id詳解
- SpringBoot整合Mybatis簡單實現增刪改查