Mybatis中查询的参数为Map条件中是in 数据组参数

Java中的代码

 Map map = new HashMap();
            map.put("iAuditStatus", audisStatusID);
            map.put("iUpdateTime", DateFormat.dateToTimeStamp(new Date()));
            map.put("iAutoId", str.split(",")); // where 条件中的in参数为数组
            res = presentAuditService.updatepl(map);

Mybatis中的sql

update t_present_audit


iAuditStatus = #{iAuditStatus,jdbcType=INTEGER},


iUpdateTime = #{iUpdateTime,jdbcType=INTEGER},


where iAutoId in  
                  open= "(" close =")" separator=",">
            #{iAutoId,jdbcType=INTEGER}
     

   


你可能感兴趣的:(javaweb)