Merge branch 'feature/mall_product'

pull/17/head
tangqian 2023-06-16 14:35:09 +08:00
commit 1813516c54
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@
`cy_recharge_order_info` info `cy_recharge_order_info` info
LEFT JOIN cy_recharge_order ord ON info.recharge_order_id = ord.id LEFT JOIN cy_recharge_order ord ON info.recharge_order_id = ord.id
WHERE WHERE
ord.paid = 1 ord.paid != 0
<if test="null != startTime"> <if test="null != startTime">
and info.create_time >= #{startTime} and info.create_time >= #{startTime}
</if> </if>

View File

@ -252,7 +252,7 @@
and b.nickname like CONCAT('%',#{data.nickname},'%') and b.nickname like CONCAT('%',#{data.nickname},'%')
</if> </if>
<if test="data.realName !=null and data.realName!=''"> <if test="data.realName !=null and data.realName!=''">
and x.real_name like CONCAT('%',#{data.realName},'%') and x.nickname like CONCAT('%',#{data.realName},'%')
</if> </if>
<if test="data.userPhone !=null and data.userPhone!=''"> <if test="data.userPhone !=null and data.userPhone!=''">
and a.user_phone like CONCAT('%',#{data.userPhone},'%') and a.user_phone like CONCAT('%',#{data.userPhone},'%')