mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 03:39:55 +08:00
update
This commit is contained in:
@@ -15,6 +15,11 @@ public class GetInvoiceInfoDTO {
|
|||||||
private Integer pageNum;
|
private Integer pageNum;
|
||||||
private Integer pageSize;
|
private Integer pageSize;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 勾选导出的申请开票记录id
|
||||||
|
*/
|
||||||
|
private Integer[] ids;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 会员id
|
* 会员id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -204,6 +204,12 @@
|
|||||||
<if test="dto.merchantId != null and dto.merchantId != ''"> and t1.merchant_id = #{dto.merchantId}</if>
|
<if test="dto.merchantId != null and dto.merchantId != ''"> and t1.merchant_id = #{dto.merchantId}</if>
|
||||||
<if test="dto.orderCodes != null and dto.orderCodes != ''"> and t1.order_codes like concat('%', #{dto.orderCodes}, '%')</if>
|
<if test="dto.orderCodes != null and dto.orderCodes != ''"> and t1.order_codes like concat('%', #{dto.orderCodes}, '%')</if>
|
||||||
<if test="dto.status != null and dto.status != ''"> and t1.status = #{dto.status}</if>
|
<if test="dto.status != null and dto.status != ''"> and t1.status = #{dto.status}</if>
|
||||||
|
<if test="dto.ids != null and dto.ids.length != 0">
|
||||||
|
and t1.id in
|
||||||
|
<foreach collection="dto.ids" item="id" open="(" separator="," close=")">
|
||||||
|
#{id,jdbcType=INTEGER}
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
order by t1.create_time desc
|
order by t1.create_time desc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user