package com.bjhst.ssm.service; import com.bjhst.ssm.model.User; import java.util.List; /** * @author admin */ @SuppressWarnings("all") public interface UserService { List<User> getAllUser(); User getUserByPhoneOrEmail(String emailOrPhone, Short state); User getUserById(Long userId); }
UserService类
最新推荐文章于 2022-06-02 23:03:05 发布