mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 11:49:49 +08:00
update 后管订单列表接口新增 payMode筛选字段
This commit is contained in:
@@ -78,6 +78,11 @@ public class QueryOrderDTO extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String endTime;
|
private String endTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 支付方式
|
||||||
|
*/
|
||||||
|
private String payMode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单编号列表
|
* 订单编号列表
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1982,6 +1982,9 @@
|
|||||||
<if test="plateNumber != null and plateNumber != ''">
|
<if test="plateNumber != null and plateNumber != ''">
|
||||||
and t1.plate_number = #{plateNumber,jdbcType=VARCHAR}
|
and t1.plate_number = #{plateNumber,jdbcType=VARCHAR}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="payMode != null and payMode != ''">
|
||||||
|
and t1.pay_mode = #{payMode,jdbcType=VARCHAR}
|
||||||
|
</if>
|
||||||
<if test="stationDeptIds != null and stationDeptIds.size() != 0">
|
<if test="stationDeptIds != null and stationDeptIds.size() != 0">
|
||||||
and t3.dept_id in
|
and t3.dept_id in
|
||||||
<foreach close=")" collection="stationDeptIds" item="stationDeptId" open="(" separator=",">
|
<foreach close=")" collection="stationDeptIds" item="stationDeptId" open="(" separator=",">
|
||||||
|
|||||||
Reference in New Issue
Block a user