📄 storageinfo.java
字号:
package com.shunshi.ssh.entity;
import java.util.Date;
/**
* Storageinfo entity. @author MyEclipse Persistence Tools
*/
public class StorageInfo implements java.io.Serializable {
// Fields
private Integer id;
private String title;
private String company;
private String address;
private Integer storageType;
private String area;
private String service;
private String price;
private String contact;
private String contactTel;
private Date deadline;
private String remark;
private Integer state;
private Date publishDate;
private Integer userId;
private Integer infotype;
// Constructors
/** default constructor */
public StorageInfo() {
}
/** full constructor */
public StorageInfo(String title, String company, String address, Integer storageType, String area, String service, String price, String contact, String contactTel, Date deadline, String remark, Integer state, Date publishDate, Integer userId, Integer infotype) {
this.title = title;
this.company = company;
this.address = address;
this.storageType = storageType;
this.area = area;
this.service = service;
this.price = price;
this.contact = contact;
this.contactTel = contactTel;
this.deadline = deadline;
this.remark = remark;
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 getCompany() {
return this.company;
}
public void setCompany(String company) {
this.company = company;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public Integer getStorageType() {
return this.storageType;
}
public void setStorageType(Integer storageType) {
this.storageType = storageType;
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
}
public String getService() {
return this.service;
}
public void setService(String service) {
this.service = service;
}
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
public String getContact() {
return this.contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public String getContactTel() {
return this.contactTel;
}
public void setContactTel(String contactTel) {
this.contactTel = contactTel;
}
public Date getDeadline() {
return this.deadline;
}
public void setDeadline(Date deadline) {
this.deadline = deadline;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
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 + -