📄 storagehouse.java
字号:
package com.shunshi.ssh.entity;
import java.util.Date;
/**
* Storagehouse entity. @author MyEclipse Persistence Tools
*/
public class StorageHouse implements java.io.Serializable {
// Fields
private Integer id;
private String title;
private String name;
private double quantity;
private Date entryTime;
private Date shipmentTime;
private String want;
private String contact;
private String telephone;
private Date timeLimit;
private String note;
private Integer state;
private Date publishDate;
private Integer userId;
private Integer infotype;
// Constructors
/** default constructor */
public StorageHouse() {
}
/** full constructor */
public StorageHouse(String title, String name, double quantity, Date entryTime, Date shipmentTime, String require, String contact, String telephone, Date timeLimit, String note, Integer state, Date publishDate, Integer userId, Integer infotype) {
this.title = title;
this.name = name;
this.quantity = quantity;
this.entryTime = entryTime;
this.shipmentTime = shipmentTime;
this.want = require;
this.contact = contact;
this.telephone = telephone;
this.timeLimit = timeLimit;
this.note = note;
this.state = state;
this.publishDate = publishDate;
this.userId = userId;
this.infotype = infotype;
}
// Property accessors
public Integer getId(){
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public double getQuantity() {
return this.quantity;
}
public void setQuantity(double quantity) {
this.quantity = quantity;
}
public Date getEntryTime() {
return this.entryTime;
}
public void setEntryTime(Date entryTime) {
this.entryTime = entryTime;
}
public Date getShipmentTime() {
return this.shipmentTime;
}
public void setShipmentTime(Date shipmentTime) {
this.shipmentTime = shipmentTime;
}
public String getWant() {
return want;
}
public void setWant(String want) {
this.want = want;
}
public String getContact() {
return this.contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public String getTelephone() {
return this.telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public Date getTimeLimit() {
return this.timeLimit;
}
public void setTimeLimit(Date timeLimit) {
this.timeLimit = timeLimit;
}
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
}
public Integer getState() {
return this.state;
}
public void setState(Integer state) {
this.state = state;
}
public Date getPublishDate() {
return this.publishDate;
}
public void setPublishDate(Date publishDate) {
this.publishDate = publishDate;
}
public Integer getUserId() {
return this.userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Integer getInfotype() {
return this.infotype;
}
public void setInfotype(Integer infotype) {
this.infotype = infotype;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -