You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.ngskcloud.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ngskcloud.entity.User;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
public interface UserService extends IService<User> {
|
|
User find(String account);
|
|
User find(Long id);
|
|
|
|
}
|