title.java

来自「图书馆管理系统!利用java的mvc开发!」· Java 代码 · 共 105 行

JAVA
105
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cn.edu.jmu.beans;/** * * @author jiangchen */public class Title {    private String tid;    private String tname;    private String isbn;    private String press;    private String author;    private int collectNum;    private float price;    private String publishingDate;    private String btype;    private String volume;    public String getTid() {        return tid;    }    public void setTid(String tid) {        this.tid = tid;    }    public String getTname() {        return tname;    }    public void setTname(String tname) {        this.tname = tname;    }    public String getIsbn() {        return isbn;    }    public void setIsbn(String isbn) {        this.isbn = isbn;    }    public String getPress() {        return press;    }    public void setPress(String press) {        this.press = press;    }    public String getAuthor() {        return author;    }    public void setAuthor(String author) {        this.author = author;    }    public int getCollectNum() {        return collectNum;    }    public void setCollectNum(int collectNum) {        this.collectNum = collectNum;    }    public float getPrice() {        return price;    }    public void setPrice(float price) {        this.price = price;    }    public String getPublishingDate() {        return publishingDate;    }    public void setPublishingDate(String publishingDate) {        this.publishingDate = publishingDate;    }    public String getBtype() {        return btype;    }    public void setBtype(String btype) {        this.btype = btype;    }    public String getVolume() {        return volume;    }    public void setVolume(String volume) {        this.volume = volume;    }}

⌨️ 快捷键说明

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