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

📄 buyorder.java

📁 基于java的物资管理系统非常好用啊相当简单
💻 JAVA
字号:
package com.university.goodsmanager.biz.entity;import java.io.Serializable;/* * 进货合同类---进货合同表 */public class BuyOrder implements Serializable {	private Integer buyOrder_ID;			/* 进货合同编号 */	private String product;				/*商品名*/	private int quantity ;				/*商品数量*/	private double price;					/*商品单价格*/	private double allPrice;				/*商品总价格*/	private String writeDate;				/*签订日期*/	private String insureDate;				/*生效日期*/	private String endDate;				/*合同到期日期*/	private String supplier;				/*供应商*/	private Employee emp;				/*合同主要负责人*/	public BuyOrder(){}	public BuyOrder(String product, int quantity, double price, double allPrice, String writeDate, String insureDate, String endDate, String supplier) {		super();				this.product = product;		this.quantity = quantity;		this.price = price;		this.allPrice = allPrice;		this.writeDate = writeDate;		this.insureDate = insureDate;		this.endDate = endDate;		this.supplier = supplier;	}	public double getAllPrice() {		return allPrice;	}	public void setAllPrice(int allPrice) {		this.allPrice = allPrice;	}	public Integer getBuyOrder_ID() {		return buyOrder_ID;	}	public void setBuyOrder_ID(Integer buyOrder_ID) {		this.buyOrder_ID = buyOrder_ID;	}	public Employee getEmp() {		return emp;	}	public void setEmp(Employee emp) {		this.emp = emp;	}	public String getEndDate() {		return endDate;	}	public void setEndDate(String endDate) {		this.endDate = endDate;	}	public String getInsureDate() {		return insureDate;	}	public void setInsureDate(String insureDate) {		this.insureDate = insureDate;	}	public double getPrice() {		return price;	}	public void setPrice(int price) {		this.price = price;	}	public String getProduct() {		return product;	}	public void setProduct(String product) {		this.product = product;	}	public int getQuantity() {		return quantity;	}	public void setQuantity(int quantity) {		this.quantity = quantity;	}	public String getSupplier() {		return supplier;	}	public void setSupplier(String supplier) {		this.supplier = supplier;	}	public String getWriteDate() {		return writeDate;	}	public void setWriteDate(String writeDate) {		this.writeDate = writeDate;	}	public void setAllPrice(double allPrice) {		this.allPrice = allPrice;	}	public void setPrice(double price) {		this.price = price;	}	}

⌨️ 快捷键说明

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