pom依赖排除测试

台桌列表返回有误修复
This commit is contained in:
张松 2025-03-10 14:36:42 +08:00
parent 345659f777
commit e9947bdc69
3 changed files with 13 additions and 0 deletions

View File

@ -47,6 +47,12 @@
<groupId>com.czg</groupId>
<artifactId>cash-common-tools</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.binarywang</groupId>

View File

@ -21,6 +21,12 @@
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-miniapp</artifactId>
<exclusions>
<exclusion>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.whvcse</groupId>

View File

@ -23,6 +23,7 @@
<if test="name != null and name != ''">
and a.name like concat('%', #{name}, '%')
</if>
group by a.id
ORDER BY a.create_time
</select>