⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 title.java

📁 图书馆管理系统!利用java的mvc开发!
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -