Compare commits

..

No commits in common. "21331590884ca33b062aaacf111f74cd471f79bb" and "0e344682ec5fa7cd750bf768e29b606748c0a940" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ public interface DevInfoMapper {
* @param maIds 需要删除的数据主键集合 * @param maIds 需要删除的数据主键集合
* @return 结果 * @return 结果
*/ */
int deleteDevInfoByMaIds(@Param("maIds") Long[] maIds); int deleteDevInfoByMaIds(Long[] maIds);
/** /**
* 添加经纬度信息 * 添加经纬度信息

View File

@ -389,7 +389,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<update id="deleteDevInfoByMaIds" parameterType="String"> <update id="deleteDevInfoByMaIds" parameterType="String">
update ma_dev_info set is_active='0' where ma_id in update ma_dev_info set is_active='0' where ma_id in
<foreach item="maId" collection="maIds" open="(" separator="," close=")"> <foreach item="maId" collection="array" open="(" separator="," close=")">
#{maId} #{maId}
</foreach> </foreach>
</update> </update>