//创建接口
public interface UserService{
void user();
}
//创建class实现UserService接口
public class UserServiceImpl implements UserService{
public void user(){
};