Merge remote-tracking branch 'origin/dev' into dev

pro
郑明梁 2 years ago
commit 393172f736

@ -3,6 +3,8 @@ package com.glxp.api.req.inv;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
import java.util.List;
/**
*
*/
@ -59,4 +61,6 @@ public class FilterInvRemindMsgRequest extends ListPageRequest {
*/
private String supId;
private List<String> listInv;
}

@ -54,6 +54,13 @@
<if test="type != null and type != ''">
AND type = #{type}
</if>
<if test="listInv != null and listInv.size() != 0">
and irm.invCode in
<foreach collection="listInv" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
</where>
order by irm.updateTime desc
</select>
@ -84,4 +91,4 @@
</if>
</where>
</select>
</mapper>
</mapper>

Loading…
Cancel
Save