mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update 财务管理页面添加筛选参数
This commit is contained in:
@@ -17,10 +17,26 @@ public class QueryMerchantInfoDTO {
|
||||
|
||||
private Integer pageNum;
|
||||
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String merchantId;
|
||||
|
||||
/**
|
||||
* 运营商名称
|
||||
*/
|
||||
private String merchantName;
|
||||
|
||||
/**
|
||||
* 负责人名称
|
||||
*/
|
||||
private String managerName;
|
||||
|
||||
/**
|
||||
* 负责人手机号
|
||||
*/
|
||||
private String managerPhone;
|
||||
|
||||
private List<String> deptIds;
|
||||
|
||||
}
|
||||
|
||||
@@ -400,5 +400,11 @@
|
||||
<if test="dto.merchantId != null and dto.merchantId != ''">
|
||||
and t1.id = #{dto.merchantId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="dto.managerName != null and dto.managerName != ''">
|
||||
and t1.manager_name = #{dto.managerName,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="dto.managerPhone != null and dto.managerPhone != ''">
|
||||
and t1.manager_phone = #{dto.managerPhone,jdbcType=VARCHAR}
|
||||
</if>
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user