📄 goods.java
字号:
package com.shunshi.ssh.entity;
import java.util.Date;
/**
* Goods entity. @author MyEclipse Persistence Tools
*/
public class Goods implements java.io.Serializable {
// Fields
private Long id;
private String topic;
private String category;
private String vehicle;
private String source;
private String target;
private double weight;
private String weights;
private Date deliverTime;
private String contact;
private String telephone;
private Date deadline;
private Date publishTime;
private String goodsSource;
private String remark;
private Long userId;
private String userName;
private Integer state;
private Integer infoType;
// Constructors
/** default constructor */
public Goods() {
}
/** full constructor */
public Goods(String topic, String category, String vehicle, String source,
String target, double weight, String weights, Date deliverTime,
String contact, String telephone, Date deadline, Date publishTime,
String goodsSource, String remark, Long userId, Integer state,
Integer infoType) {
this.topic = topic;
this.category = category;
this.vehicle = vehicle;
this.source = source;
this.target = target;
this.weight = weight;
this.weights = weights;
this.deliverTime = deliverTime;
this.contact = contact;
this.telephone = telephone;
this.deadline = deadline;
this.publishTime = publishTime;
this.goodsSource = goodsSource;
this.remark = remark;
this.userId = userId;
this.state = state;
this.infoType = infoType;
}
// Property accessors
public Long getId() {
return this.id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public void setId(Long id) {
this.id = id;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public String getVehicle() {
return this.vehicle;
}
public void setVehicle(String vehicle) {
this.vehicle = vehicle;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
public double getWeight() {
return this.weight;
}
public void setWeight(double weight) {
this.weight = weight;
}
public String getWeights() {
return this.weights;
}
public void setWeights(String weights) {
this.weights = weights;
}
public Date getDeliverTime() {
return this.deliverTime;
}
public void setDeliverTime(Date deliverTime) {
this.deliverTime = deliverTime;
}
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 getDeadline() {
return this.deadline;
}
public void setDeadline(Date deadline) {
this.deadline = deadline;
}
public Date getPublishTime() {
return this.publishTime;
}
public void setPublishTime(Date publishTime) {
this.publishTime = publishTime;
}
public String getGoodsSource() {
return this.goodsSource;
}
public void setGoodsSource(String goodsSource) {
this.goodsSource = goodsSource;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getUserId() {
return this.userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public Integer getState() {
return this.state;
}
public void setState(Integer state) {
this.state = state;
}
public Integer getInfoType() {
return this.infoType;
}
public void setInfoType(Integer infoType) {
this.infoType = infoType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -