sw5201viewentity1.java

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

JAVA
81
字号
package jp.com.cost.tj.entity;

import java.text.DecimalFormat;

/**
 * 该实体是SW5201页面显示列表中的一条记录的实体,用来封装查询出的数据
 * @author 庞显峰
 * @version 1.0
 */

public class SW5201ViewEntity1 {

	private Integer oid;
	private String operater;
	private String shipCo;
	public double quantity;
	public String updatetime;
	/**
	 * @return the oid
	 */
	public Integer getOid() {
		return oid;
	}
	/**
	 * @param oid the oid to set
	 */
	public void setOid(Integer oid) {
		this.oid = oid;
	}
	/**
	 * @return the operater
	 */
	public String getOperater() {
		return operater;
	}
	/**
	 * @param operater the operater to set
	 */
	public void setOperater(String operater) {
		this.operater = operater;
	}
	/**
	 * @return the shipCo
	 */
	public String getShipCo() {
		return shipCo;
	}
	/**
	 * @param shipCo the shipCo to set
	 */
	public void setShipCo(String shipCo) {
		this.shipCo = shipCo;
	}
	/**
	 * @return the quantity
	 */
	public double getQuantity() {
		return quantity;
	}
	/**
	 * @param quantity the quantity to set
	 */
	public void setQuantity(double quantity) {
		this.quantity = quantity;
	}
	/**
	 * @return the updatetime
	 */
	public String getUpdatetime() {
		return updatetime;
	}
	/**
	 * @param updatetime the updatetime to set
	 */
	public void setUpdatetime(String updatetime) {
		this.updatetime = updatetime;
	}

	
}

⌨️ 快捷键说明

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