book.java

来自「基于ssh框架」· Java 代码 · 共 74 行

JAVA
74
字号
package com.zzu.dao.entity;

import java.util.Date;

/**
 * Book entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Book implements java.io.Serializable {

	// Fields

	private Integer bid;
	private String btitle;
	private String bcontent;
	private Date inputdate;

	// Constructors

	/** default constructor */
	public Book() {
	}

	/** minimal constructor */
	public Book(Integer bid, String btitle) {
		this.bid = bid;
		this.btitle = btitle;
	}

	/** full constructor */
	public Book(Integer bid, String btitle, String bcontent, Date inputdate) {
		this.bid = bid;
		this.btitle = btitle;
		this.bcontent = bcontent;
		this.inputdate = inputdate;
	}

	// Property accessors

	public Integer getBid() {
		return this.bid;
	}

	public void setBid(Integer bid) {
		this.bid = bid;
	}

	public String getBtitle() {
		return this.btitle;
	}

	public void setBtitle(String btitle) {
		this.btitle = btitle;
	}

	public String getBcontent() {
		return this.bcontent;
	}

	public void setBcontent(String bcontent) {
		this.bcontent = bcontent;
	}

	public Date getInputdate() {
		return this.inputdate;
	}

	public void setInputdate(Date inputdate) {
		this.inputdate = inputdate;
	}

}

⌨️ 快捷键说明

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