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

📄 sw5201viewentity1.java

📁 一个完整的物流系统
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -