teacherdao.java

来自「ejb3经典教程的源码」· Java 代码 · 共 11 行

JAVA
11
字号
package com.foshanshop.ejb3;

import com.foshanshop.ejb3.bean.Student;
import com.foshanshop.ejb3.bean.Teacher;

public interface TeacherDAO {
    public void insertTeacher(String name, String[] studentnames);
    public Teacher getTeacherByID(Integer teacherid);
    public Student getStudentByID(Integer studentid);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?