btype.java

来自「《Web程序测试实训教程(Java版)》-徐民鹰-源代码」· Java 代码 · 共 24 行

JAVA
24
字号
package bookType;

public class Btype {
    private int btid;
    private String booktype = null;
    
    public Btype (int aid, String bty)
    {
        this.btid = aid;
        this.booktype = bty;
    }

    public int getId ()
    {
        return this.btid;
    }

    public String getType ()
    {
        return this.booktype;
    }
}

⌨️ 快捷键说明

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