sell.java

来自「基于JSP的家电连锁超市管理系统 数据库也在文件内」· Java 代码 · 共 101 行

JAVA
101
字号
package electric.dbs;

public class Sell
{
	private int Id;
	private int Productid;
	private int Shopid;
	private String Procolor;
	private String Protype;
	private String Companytype;
	private int Pronumber;
	private String Ptime;
	private String Createdate;
	private int Status;
	public Sell()
	{
	}
	//getXXX()
	public int getId()
	{
		return this.Id;
	}
	public int getShopid()
	{
		return this.Shopid;
	}	
	public int getProductid()
	{
		return this.Productid;
	}
	public String getProcolor()
	{
		return this.Procolor;
	}
	public String getProtype()
	{
		return this.Protype;
	}
	public String getCompanytype()
	{
		return this.Companytype;
	}
	public int getPronumber()
	{
		return this.Pronumber;
	}
	public String getPtime()
	{
		return this.Ptime;
	}
	public String getCreatedate()
	{
		return this.Createdate;
	}
	public int getStatus()
	{
		return this.Status;
	}
	
	//setXXX()
	public void setId(int Id)
	{
		this.Id=Id;
	}
	public void setShopid(int Shopid)
	{
		this.Shopid=Shopid;
	}
	public void setProductid(int Productid)
	{
		this.Productid=Productid;
	}
	public void setProcolor(String Procolor)
	{
		this.Procolor=Procolor;
	}
	public void setProtype(String Protype)
	{
		this.Protype=Protype;
	}
	public void setCompanytype(String Companytype)
	{
		this.Companytype=Companytype;
	}
	public void setPronumber(int Pronumber)
	{
		this.Pronumber=Pronumber;
	}
	public void setPtime(String Ptime)
	{
		this.Ptime=Ptime;
	}
	public void setCreatdate(String Createdate)
	{
		this.Createdate=Createdate;
	}
	public void setStatus(int Status)
	{
		this.Status=Status;
	}
}

⌨️ 快捷键说明

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