This commit is contained in:
zengtao01
2024-10-08 16:50:22 +08:00
parent 457a974fc0
commit b3f64ed799

View File

@ -118,6 +118,6 @@ public interface MemberUserMapper extends BaseMapperX<MemberUserDO> {
String getFace(Long userId);
@Update("update user_face set phone = #{phone} where sys_user_id = #{userId}")
String updateFace(@Param("userId") Long userId, @Param("phone")String phone);
void updateFace(@Param("userId") Long userId, @Param("phone")String phone);
}