cgcontract.java

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

JAVA
176
字号
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 CgContract {
	private String id = "";
	private String dates = "";
	private String content = "";
	private String bdates = "";
	private String edate = "";
	private String jihua = "";
	private String shiji = "";
	private String yifu = "";
	private String supplierId = "";
	private String memo = "";
	private String bianhao = "";
	/**
	 * Returns the bdates.
	 * @return String
	 */
	public String getBdates() {
		return bdates;
	}

	/**
	 * Returns the content.
	 * @return String
	 */
	public String getContent() {
		return content;
	}

	/**
	 * Returns the dates.
	 * @return String
	 */
	public String getDates() {
		return dates;
	}

	/**
	 * Returns the edate.
	 * @return String
	 */
	public String getEdate() {
		return edate;
	}
	
	/**
	 * Returns the edate.
	 * @return String
	 */
	public String getJihua() {
		return jihua;
	}
	
	/**
	 * Returns the edate.
	 * @return String
	 */
	public String getShiji() {
		return shiji;
	}
	
	/**
	 * Returns the edate.
	 * @return String
	 */
	public String getYifu() {
		return yifu;
	}

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

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

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

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

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

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

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

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

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

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

}

⌨️ 快捷键说明

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