df6e212da4e40d8dbaf9a5864f1c179f1b575b4e.svn-base 3.18 KB
package com.phxl.modules.goods.entity.suoutstore;

import java.math.BigDecimal;
import java.util.Date;

/**
 * 供应商出库单信息
 */

public class SuOutStoreDetail {

	private String billNo;	//单据编号
	private int rowNo;	//行号
	private String medPlanNo;	//医院补货计划单据号
	private int medPlanRowNo;	//补货计划单据原行号
	private String goodsGuid;	//商品编码
	private String goodsName;	//商品名称
	private String goodsSpec;	//商品规格
	private String unit;	//包装单位
	private String manufacturer;	//生产厂商
	private BigDecimal purchaserPrice;	//采购价格
	private BigDecimal amount;	//金额
	private String lot;	//批号
	private Date productionDate;	//生产日期
	private Date expireDate;	//有效期至
	private BigDecimal poqty;	//补货计划数
	private BigDecimal arrivalqty;	//出库数
	private String memo;	//备注

	private String id;

	public String getBillNo() {
		return billNo;
	}

	public void setBillNo(String billNo) {
		this.billNo = billNo;
	}

	public int getRowNo() {
		return rowNo;
	}

	public void setRowNo(int rowNo) {
		this.rowNo = rowNo;
	}

	public String getMedPlanNo() {
		return medPlanNo;
	}

	public void setMedPlanNo(String medPlanNo) {
		this.medPlanNo = medPlanNo;
	}

	public int getMedPlanRowNo() {
		return medPlanRowNo;
	}

	public void setMedPlanRowNo(int medPlanRowNo) {
		this.medPlanRowNo = medPlanRowNo;
	}

	public String getGoodsGuid() {
		return goodsGuid;
	}

	public void setGoodsGuid(String goodsGuid) {
		this.goodsGuid = goodsGuid;
	}

	public String getGoodsName() {
		return goodsName;
	}

	public void setGoodsName(String goodsName) {
		this.goodsName = goodsName;
	}

	public String getGoodsSpec() {
		return goodsSpec;
	}

	public void setGoodsSpec(String goodsSpec) {
		this.goodsSpec = goodsSpec;
	}

	public String getUnit() {
		return unit;
	}

	public void setUnit(String unit) {
		this.unit = unit;
	}

	public String getManufacturer() {
		return manufacturer;
	}

	public void setManufacturer(String manufacturer) {
		this.manufacturer = manufacturer;
	}

	public BigDecimal getPurchaserPrice() {
		return purchaserPrice;
	}

	public void setPurchaserPrice(BigDecimal purchaserPrice) {
		this.purchaserPrice = purchaserPrice;
	}

	public BigDecimal getAmount() {
		return amount;
	}

	public void setAmount(BigDecimal amount) {
		this.amount = amount;
	}

	public String getLot() {
		return lot;
	}

	public void setLot(String lot) {
		this.lot = lot;
	}

	public Date getProductionDate() {
		return productionDate;
	}

	public void setProductionDate(Date productionDate) {
		this.productionDate = productionDate;
	}

	public Date getExpireDate() {
		return expireDate;
	}

	public void setExpireDate(Date expireDate) {
		this.expireDate = expireDate;
	}

	public BigDecimal getPoqty() {
		return poqty;
	}

	public void setPoqty(BigDecimal poqty) {
		this.poqty = poqty;
	}

	public BigDecimal getArrivalqty() {
		return arrivalqty;
	}

	public void setArrivalqty(BigDecimal arrivalqty) {
		this.arrivalqty = arrivalqty;
	}

	public String getMemo() {
		return memo;
	}

	public void setMemo(String memo) {
		this.memo = memo;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}
	
}