会员标识

This commit is contained in:
wangw 2024-07-10 17:42:51 +08:00
parent 7214d9d4fc
commit 713350ac3a
1 changed files with 2 additions and 0 deletions

View File

@ -25,7 +25,9 @@ public interface ShopUserMapper extends BaseMapper<TbShopUser> {
"<if test='param.name != null and param.name != &quot;&quot;'>" +
"AND (u.nick_name like concat('%', #{param.name}, '%') or u.telephone like concat('%', #{param.name}, '%'))" +
"</if>" +
"<if test='isVip != null'>" +
"AND su.is_vip=#{isVip}" +
"</if>" +
"</where>" +
"</script>")
IPage<ShopUserInfoVo> queryUser(TbShopUserQueryCriteria param, Integer isVip, Page pageInfo);