service.java

来自「该源码包括了基于J2EE的数据持久层设计,设计中使用了DAO,Service,等」· Java 代码 · 共 21 行

JAVA
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?