用户国家为空的充值代理列表展示所有充值代理

This commit is contained in:
2025-09-10 16:07:06 +08:00
parent c28a93e0c3
commit 4d8d6ef945
2 changed files with 4 additions and 3 deletions

View File

@@ -37,7 +37,9 @@
inner join users u on ru.uid = u.uid
where u.partition_id = #{partitionId}
and ru.has_guild_charge = 1
and (cr.`code` = #{regionCode} or cr.`code` = 'Global')
<if test="regionCode != null">
and (cr.`code` = #{regionCode} or cr.`code` = 'Global')
</if>
</select>
<select id="listByManageUid" resultType="com.accompany.payment.vo.RechargeUserVo">