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

📄 indentinfo.java

📁 这是一个物流管理系统
💻 JAVA
字号:
package bean;

/**
 * 订货表详细信息--市场专员
 */

public class Indentinfo implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private Long indentid;
	private Stockpile stockpile;
	private Orderinfo orderinfo;
	private Units units;
	private Long goodsamount;

	// Constructors

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

	/** full constructor */
	public Indentinfo(Stockpile stockpile, Orderinfo orderinfo, Units units,
			Long goodsamount) {
		this.stockpile = stockpile;
		this.orderinfo = orderinfo;
		this.units = units;
		this.goodsamount = goodsamount;
	}

	// Property accessors

	public Long getIndentid() {
		return this.indentid;
	}

	public void setIndentid(Long indentid) {
		this.indentid = indentid;
	}

	public Stockpile getStockpile() {
		return this.stockpile;
	}

	public void setStockpile(Stockpile stockpile) {
		this.stockpile = stockpile;
	}

	public Orderinfo getOrderinfo() {
		return this.orderinfo;
	}

	public void setOrderinfo(Orderinfo orderinfo) {
		this.orderinfo = orderinfo;
	}

	public Units getUnits() {
		return this.units;
	}

	public void setUnits(Units units) {
		this.units = units;
	}

	public Long getGoodsamount() {
		return this.goodsamount;
	}

	public void setGoodsamount(Long goodsamount) {
		this.goodsamount = goodsamount;
	}

}

⌨️ 快捷键说明

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