|
@@ -478,8 +478,8 @@ public interface FsUserMapper
|
|
|
|
|
|
|
|
void updatePasswordByPhone(@Param("password")String password, @Param("encryptPhone")String encryptPhone);
|
|
void updatePasswordByPhone(@Param("password")String password, @Param("encryptPhone")String encryptPhone);
|
|
|
|
|
|
|
|
- @Select("select * from fs_user where phone=#{phone} AND app_id LIKE CONCAT('%',#{appid},'%')")
|
|
|
|
|
- List<FsUser> selectFsUsersByPhoneLimitOne(@Param("phone") String phone, @Param("appid") String appid);
|
|
|
|
|
|
|
+ @Select("select * from fs_user where phone=#{phone} AND biz_type = #{bizType}")
|
|
|
|
|
+ List<FsUser> selectFsUsersByPhoneLimitOne(@Param("phone") String phone, @Param("bizType") Integer bizType);
|
|
|
|
|
|
|
|
List<FsUser> selectFsUserListByUserIds(@Param("userIds") List<Long> userIds);
|
|
List<FsUser> selectFsUserListByUserIds(@Param("userIds") List<Long> userIds);
|
|
|
|
|
|