goodsin.java

来自「企业进销存源码」· Java 代码 · 共 132 行

JAVA
132
字号
package com.business.vo;

/**
 * @author Administrator
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public class GoodsIn {
	private String id = "";
	private String goodsId = "";
	private String inDate = "";
	private String bianhao= "";
	private String inNum = "";
	private String supplierId = "";
	private String cfqy = "";
	/**
	 * Returns the goodsId.
	 * @return String
	 */
	public String getGoodsId() {
		return goodsId;
	}

	/**
	 * Returns the id.
	 * @return String
	 */
	public String getId() {
		return id;
	}

	/**
	 * Returns the inDate.
	 * @return String
	 */
	public String getInDate() {
		return inDate;
	}
	
	/**
	 * Returns the bianhao.
	 * @return String
	 */
	public String getBianhao() {
		return bianhao;
	}

	/**
	 * Returns the inNum.
	 * @return String
	 */
	public String getInNum() {
		return inNum;
	}

	/**
	 * Sets the goodsId.
	 * @param goodsId The goodsId to set
	 */
	public void setGoodsId(String goodsId) {
		this.goodsId = goodsId;
	}

	/**
	 * Sets the id.
	 * @param id The id to set
	 */
	public void setId(String id) {
		this.id = id;
	}

	/**
	 * Sets the inDate.
	 * @param inDate The inDate to set
	 */
	public void setInDate(String inDate) {
		this.inDate = inDate;
	}
	
	/**
	 * Sets the bianhao.
	 * @param bianhao The bianhao to set
	 */
	public void setBianhao(String bianhao) {
		this.bianhao = bianhao;
	}

	/**
	 * Sets the inNum.
	 * @param inNum The inNum to set
	 */
	public void setInNum(String inNum) {
		this.inNum = inNum;
	}

	/**
	 * Returns the supplierId.
	 * @return String
	 */
	public String getSupplierId() {
		return supplierId;
	}

	/**
	 * Sets the supplierId.
	 * @param supplierId The supplierId to set
	 */
	public void setSupplierId(String supplierId) {
		this.supplierId = supplierId;
	}

	/**
	 * Returns the cfqy.
	 * @return String
	 */
	public String getCfqy() {
		return cfqy;
	}

	/**
	 * Sets the cfqy.
	 * @param cfqy The cfqy to set
	 */
	public void setCfqy(String cfqy) {
		this.cfqy = cfqy;
	}

}

⌨️ 快捷键说明

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