mybatis 遍历字符串数组(^_^)

mybatis传入字符串,集合,数组并遍历



      and i.approve_status IN
        
            #{status}
        

这个写法比较省事,实体类的ordercode字段不需要添加orderCode数组或者List,直接在xml中的foreach的collection使用orderCode.split(',')变成数组。

下面的二种比较常见



				AND operate_user in
				
					#{user.userName}
				
			


      and i.approve_status IN
        
            #{approveStatus}
        

 

你可能感兴趣的:(mybatis)