sw4201viewentity1list.java

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

JAVA
118
字号
package jp.com.cost.sw.entity;

public class SW4201ViewEntity1List {
	private Integer id; 		// 编号
	private String sendPeron; 	// 发货人
	private String recePerson; 	// 收货人
	private double size; 		// 尺码
	private double weight; 		// 运货量
	private double traFree; 	// 运费率
	private double dealCost; 	// 应收费用

	/**
	 * @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 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 traFree
	 */
	public double getTraFree() {
		return traFree;
	}

	/**
	 * @param traFree
	 *            the traFree to set
	 */
	public void setTraFree(double traFree) {
		this.traFree = traFree;
	}

	/**
	 * @return the dealCost
	 */
	public double getDealCost() {
		return dealCost;
	}

	/**
	 * @param dealCost
	 *            the dealCost to set
	 */
	public void setDealCost(double dealCost) {
		this.dealCost = dealCost;
	}

}

⌨️ 快捷键说明

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