📄 service.java
字号:
package org.conference.datapersistence.Service;
import java.util.List;
import org.conference.datapersistence.Bo.ConferenceVO;
import org.conference.datapersistence.Bo.UserVO;
public interface Service {
public String FindUserPasswordbyUserid(String userid) throws ServiceException;
public List FindConferencebyMultiple(ConferenceVO conference) throws ServiceException;
public int insertConferenceInfo(ConferenceVO conference) throws ServiceException;
public int NewUserRegistration(UserVO user) throws ServiceException;
public List FindAllConferenceInfo() throws ServiceException;
public int UpdateUserInfobyUserid(UserVO user) throws ServiceException;
public List FindTopnConferenceInfo(int n) throws ServiceException;
public Object FindConferencebyId(int id) throws ServiceException;
public Object FindUserDetailInfobyName(String name) throws ServiceException;
public String Finduserbyusername(String name) throws ServiceException;
public List Finduserbymyinterest(String interestname,int myid) throws ServiceException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -