package com.zy.asrs.wcs.system.service; import com.baomidou.mybatisplus.extension.service.IService; import com.zy.asrs.wcs.system.entity.User; public interface UserService extends IService { User getByUsername(String username, Long hostId); User getByIdRel(Long userId); boolean comparePassword(String dbPassword, String inputPassword); String encodePassword(String password); }