dc2101viewentity1.java

来自「一个完整的物流系统」· Java 代码 · 共 97 行

JAVA
97
字号
package jp.com.cost.dc.entity;

public class DC2101ViewEntity1 {
	private Integer id;    
	private String sendperon;
	private String receperson;
	private String type;
	private double size;
	private double weight;
	private String lister;
	/**
	 * @return the id
	 */
	public Integer getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(Integer id) {
		this.id = id;
	}
	/**
	 * @return the sendperon
	 */
	public String getSendperon() {
		return sendperon;
	}
	/**
	 * @param sendperon the sendperon to set
	 */
	public void setSendperon(String sendperon) {
		this.sendperon = sendperon;
	}
	/**
	 * @return the receperson
	 */
	public String getReceperson() {
		return receperson;
	}
	/**
	 * @param receperson the receperson to set
	 */
	public void setReceperson(String receperson) {
		this.receperson = receperson;
	}
	/**
	 * @return the type
	 */
	public String getType() {
		return type;
	}
	/**
	 * @param type the type to set
	 */
	public void setType(String type) {
		this.type = type;
	}
	/**
	 * @return the size
	 */
	public Double getSize() {
		return size;
	}
	/**
	 * @param size the size to set
	 */
	public void setSize(Double size) {
		this.size = size;
	}
	/**
	 * @return the weight
	 */
	public Double getWeight() {
		return weight;
	}
	/**
	 * @param weight the weight to set
	 */
	public void setWeight(Double weight) {
		this.weight = weight;
	}
	/**
	 * @return the lister
	 */
	public String getLister() {
		return lister;
	}
	/**
	 * @param lister the lister to set
	 */
	public void setLister(String lister) {
		this.lister = lister;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?