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!

推薦閱讀: