添加最后登录时间

This commit is contained in:
2024-08-26 11:33:11 +08:00
parent f0476f05e0
commit bbcd6edf20

View File

@@ -14,9 +14,10 @@ public interface ShopUserMapper extends BaseMapper<TbShopUser> {
@Select("<script>" +
"SELECT su.id as id, su.head_img as headImg, su.name as nickName, su.sex as sex, " +
"su.amount as amount, 0 as totalScore, su.telephone as telephone, " +
"su.birth_day as birthDay, su.is_vip as isVip, su.created_at as createAt " +
"su.amount as amount, 0 as totalScore, su.telephone as telephone, u.last_log_in_at as lastLoginAt " +
"su.birth_day as birthDay, su.is_vip as isVip, su.created_at as createAt, " +
"FROM tb_shop_user su " +
"left join tb_user_info u on u.id = su.user_id " +
"<where> " +
"<if test='param.shopId != null and param.shopId != &quot;&quot; and param.shopId != 1'>" +
"AND su.shop_id = #{param.shopId} " +