📄 transitinfo.java
字号:
package com.shunshi.ssh.entity;
import java.util.Date;
/**
* Transitinfo entity. @author MyEclipse Persistence Tools
*/
public class Transitinfo implements java.io.Serializable {
// Fields
private Integer id;
private String title;
private String type;
private String desire;
private String source;
private String target;
private String weight;
private String weights;
private Date sendTime;
private String contact;
private String contactTel;
private Date deadline;
private String goodsSource;
private String remark;
private Integer state;
private Date publishDate;
private Integer userId;
private Integer infotype;
// Constructors
/** default constructor */
public Transitinfo() {
}
/** full constructor */
public Transitinfo(String title, String type, String require, String source, String target, String weight, String weights, Date sendTime, String contact, String contactTel, Date deadline, String goodsSource, String remark, Integer state, Date publishDate, Integer userId, Integer infotype) {
this.title = title;
this.type = type;
this.desire = require;
this.source = source;
this.target = target;
this.weight = weight;
this.weights = weights;
this.sendTime = sendTime;
this.contact = contact;
this.contactTel = contactTel;
this.deadline = deadline;
this.goodsSource = goodsSource;
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 getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDesire() {
return desire;
}
public void setDesire(String desire) {
this.desire = desire;
}
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 String getWeight() {
return this.weight;
}
public void setWeight(String weight) {
this.weight = weight;
}
public String getWeights() {
return this.weights;
}
public void setWeights(String weights) {
this.weights = weights;
}
public Date getSendTime() {
return this.sendTime;
}
public void setSendTime(Date sendTime) {
this.sendTime = sendTime;
}
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 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 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 + -