From a98d9e4bb62ba83bfdd6e2d9308ef6a25beb2ef0 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 25 Oct 2021 11:36:16 +0800 Subject: [PATCH] 20211025 --- zq-erp/src/main/resources/mybatis/mapper/hive/ShoppingGoodsDao.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/ShoppingGoodsDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/ShoppingGoodsDao.xml index 1277ab1..30fa7f3 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/hive/ShoppingGoodsDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/hive/ShoppingGoodsDao.xml @@ -429,7 +429,7 @@ <if test="isPresent != null and isPresent !='' "> is_present = #{isPresent}, </if> - <if test="isOnce != null and isOnce !='' "> + <if test="isOnce != null "> is_once = #{isOnce}, </if> <if test="salePlatform != null and salePlatform !='' "> @@ -447,13 +447,13 @@ </if> <if - test="(carMaxSaleCount != null and carMaxSaleCount !='') or carMaxSaleCount==0"> + test="carMaxSaleCount != null"> car_max_sale_count = #{carMaxSaleCount}, </if> <if test="carIsAll != null and carIsAll !='' "> car_is_all = #{carIsAll}, </if> - <if test="(carUseCount != null and carUseCount !='') or carUseCount==0 "> + <if test="carUseCount != null "> car_use_count = #{carUseCount}, </if> <if test="isVipCar != null and isVipCar !='' "> -- Gitblit v1.9.1