修改操作日志bug

master
wangwei 2 years ago
parent f68b2e4597
commit 3e53996498

@ -7,4 +7,5 @@ import lombok.Data;
public class FilterInvPreinDetailRequest extends ListPageRequest {
private String orderId;
private String code;
}

@ -12,6 +12,9 @@
<if test="orderId != null and orderId != ''">
AND ic.orderId = #{orderId}
</if>
<if test="code != null and code != ''">
and ic.code like concat('%',#{code},'%')
</if>
</where>
group by ic.id
</select>

Loading…
Cancel
Save