📄 examinqueryservice.java
字号:
package edu.yinhe.mis.services;
import java.sql.SQLException;
import javax.sql.DataSource;
import edu.yinhe.mis.dto.DemoDTO;
import edu.yinhe.mis.model.DAOFactory;
import edu.yinhe.mis.vo.DemoVO;
import edu.yinhe.system.common.AppException;
import edu.yinhe.system.model.IBaseDAO;
import edu.yinhe.system.services.IService;
import edu.yinhe.system.services.Service;
public class ExaminQueryService extends Service {
private IBaseDAO DemoDAO=null;
public Object alllist() throws AppException {
return null;
}
public Object alllist(Object arg0) throws AppException {
return null;
}
public Object create(Object arg0) throws AppException {
return null;
}
public Object findAll() throws AppException {
return null;
}
public Object findAll(Object arg0) throws AppException {
return null;
}
public Object findById(Object arg0) throws AppException {
return null;
}
public Object findByObject(Object arg0) throws AppException {
return null;
}
public int getcount() throws AppException {
return 0;
}
public int getcount(Object arg0) throws AppException {
return 0;
}
public Object list() throws AppException {
return null;
}
public Object list(Object arg0) throws AppException {
return null;
}
public Object load(Object arg0) throws AppException {
return null;
}
public Object modify(Object arg0) throws AppException {
return null;
}
public Object remove(Object arg0) throws AppException {
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -