📄 studentbo.java
字号:
package com.orilore.ssms.bo;
import com.orilore.ssms.dao.StuDao;
import java.util.List;
import com.orilore.ssms.entity.Student;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2009</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class StudentBo {
StuDao sd = null;
public StudentBo() {
sd = new StuDao();
}
public List<Student> queryAllStudent(){
return sd.findAll();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -