package com.zy.system.service; import com.baomidou.mybatisplus.extension.service.IService; import com.zy.system.entity.User; public interface UserService extends IService { User getByMobileWithSecurity(String mobile); User getByIdWithSecurity(Long id); User getByPasskeyCredentialId(String credentialId); }