提交修改

This commit is contained in:
quyixiao 2025-08-22 13:15:29 +08:00
parent 17b12e9f47
commit 2f38b183eb
3 changed files with 19 additions and 4 deletions

View File

@ -45,7 +45,7 @@
<dependency> <dependency>
<groupId>com.lz.mybatis.plugin</groupId> <groupId>com.lz.mybatis.plugin</groupId>
<artifactId>lz_mybatis_plugin</artifactId> <artifactId>lz_mybatis_plugin</artifactId>
<version>14.0-SNAPSHOT</version> <version>19.0-SNAPSHOT</version>
</dependency> </dependency>

View File

@ -2,5 +2,23 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.heyu.api.data.dao.vv.VvProductDao"> <mapper namespace="com.heyu.api.data.dao.vv.VvProductDao">
<trim prefix="set" suffixOverrides="," prefixOverrides="," >
<if test="isDelete != null">is_delete = #{isDelete},</if>
<if test="gmtCreate != null">gmt_create = #{gmtCreate},</if>
<if test="uid != null">uid = #{uid},</if>
<if test="appId != null">app_id = #{appId},</if>
<if test="orderId != null">order_id = #{orderId},</if>
<if test="registerPhone != null">register_phone = #{registerPhone},</if>
<if test="content != null">content = #{content}</if>
</trim>
</mapper> </mapper>

View File

@ -62,9 +62,6 @@ public class ProductController {
}); });
List<VvPropertyEntity> vvPropertyEntities = pageUtils.getRows(); List<VvPropertyEntity> vvPropertyEntities = pageUtils.getRows();
return R.ok(); return R.ok();
} }