From 5bcbdac626be0d2a345c10fce1e07e8056ade635 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 18 九月 2023 14:01:31 +0800 Subject: [PATCH] excel导入失败去除type=13 --- src/main/java/com/nanometer/smartlab/dao/SysWarehouseDao.xml | 8 -------- 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/nanometer/smartlab/dao/SysWarehouseDao.xml b/src/main/java/com/nanometer/smartlab/dao/SysWarehouseDao.xml index 7cab815..ef9df27 100644 --- a/src/main/java/com/nanometer/smartlab/dao/SysWarehouseDao.xml +++ b/src/main/java/com/nanometer/smartlab/dao/SysWarehouseDao.xml @@ -90,18 +90,10 @@ <update id="updateSysWarehouse" parameterType="com.nanometer.smartlab.entity.SysWarehouse"> update sys_warehouse set type=#{type}, name=#{name}, info_code=#{infoCode}, bar_code=#{barCode}, location1=#{location1}, location2=#{location2}, update_time=now(),department=#{department} - <if test="temperatureMax != null and temperatureMax != ''"> ,temperature_max = #{temperatureMax} - </if> - <if test="temperatureMin != null and temperatureMin != ''"> ,temperature_min = #{temperatureMin} - </if> - <if test="humidityMax != null and humidityMax != ''"> ,humidity_max = #{humidityMax} - </if> - <if test="humidityMin != null and humidityMin != ''"> ,humidity_min = #{humidityMin} - </if> where id=#{id} </update> -- Gitblit v1.9.2