feat: 获取客户最大sn

This commit is contained in:
caiyuchao
2025-05-26 09:56:26 +08:00
parent 2483bdc74a
commit 1a9ad560f6
5 changed files with 22 additions and 6 deletions

View File

@@ -87,6 +87,12 @@ public class CustomerController {
return success(isExists);
}
@GetMapping("/max-sn")
@Operation(summary = "返回当前最大客户sn")
public CommonResult<Integer> selectMaxCode() {
return success(customerService.selectMaxCode());
}
@GetMapping("/page")
@Operation(summary = "获得客户分页")
@PreAuthorize("@ss.hasPermission('license:customer:query')")

View File

@@ -30,4 +30,5 @@ public interface CustomerMapper extends BaseMapperX<CustomerDO> {
return selectOne(CustomerDO::getName, name);
}
Integer selectMaxCode();
}

View File

@@ -60,4 +60,10 @@ public interface CustomerService {
*/
Boolean validateCustomerNameExists(String name, Long id);
/**
* 查询当前最大的sn号
*
* @return
*/
Integer selectMaxCode();
}

View File

@@ -87,4 +87,10 @@ public class CustomerServiceImpl implements CustomerService {
return false;
}
@Override
public Integer selectMaxCode() {
Integer maxCode = customerMapper.selectMaxCode();
return maxCode == null || maxCode < 2000 ? 2000 : maxCode + 1;
}
}

View File

@@ -2,11 +2,8 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.agt.module.license.dal.mysql.customer.CustomerMapper">
<!--
一般情况下,尽可能使用 Mapper 进行 CRUD 增删改查即可。
无法满足的场景,例如说多表关联查询,才使用 XML 编写 SQL。
代码生成器暂时只生成 Mapper XML 文件本身,更多推荐 MybatisX 快速开发插件来生成查询。
文档可见https://www.iocoder.cn/MyBatis/x-plugins/
-->
<select id="selectMaxCode" resultType="Integer">
SELECT max(`code` + 0) from lic_customer;
</select>
</mapper>