⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transport.java

📁 一个关于物流的管理系统
💻 JAVA
字号:
package com.shunshi.ssh.entity;

import java.util.Date;

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

public class Transport implements java.io.Serializable {

	// Fields

	private Long id;
	private String topic;
	private String carType;
	private float carLength;
	private float loads;
	private String weights;
	private String source;
	private String target;
	private Date deliverTime;
	private float price;
	private String contact;
	private String telephone;
	private Date deadline;
	private Date publishDate;
	private String carCompany;
	private String remark;
	private Long userId;
	private String userName;
	private Integer state;
	private Integer infoType;

	// Constructors

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

	/** full constructor */
	public Transport(String topic, String carType, float carLength,
			float loads,String weights, String source, String target, Date deliverTime,
			float price, String contact, String telephone, Date deadline,
			Date publishDate, String carCompany, String remark, Integer uerId,
			Integer state, Integer infoType) {
		this.topic = topic;
		this.carType = carType;
		this.carLength = carLength;
		this.loads = loads;
		this.weights=weights;
		this.source = source;
		this.target = target;
		this.deliverTime = deliverTime;
		this.price = price;
		this.contact = contact;
		this.telephone = telephone;
		this.deadline = deadline;
		this.publishDate = publishDate;
		this.carCompany = carCompany;
		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 getCarType() {
		return this.carType;
	}

	public void setCarType(String carType) {
		this.carType = carType;
	}

	public float getCarLength() {
		return this.carLength;
	}

	public void setCarLength(float carLength) {
		this.carLength = carLength;
	}

	public float getLoads() {
		return this.loads;
	}

	public void setLoads(float loads) {
		this.loads = loads;
	}

	public String getWeights() {
		return weights;
	}

	public void setWeights(String weights) {
		this.weights = weights;
	}

	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 Date getDeliverTime() {
		return this.deliverTime;
	}

	public void setDeliverTime(Date deliverTime) {
		this.deliverTime = deliverTime;
	}

	public float getPrice() {
		return this.price;
	}

	public void setPrice(float price) {
		this.price = price;
	}

	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 getPublishDate() {
		return this.publishDate;
	}

	public void setPublishDate(Date publishDate) {
		this.publishDate = publishDate;
	}

	public String getCarCompany() {
		return this.carCompany;
	}

	public void setCarCompany(String carCompany) {
		this.carCompany = carCompany;
	}

	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 + -