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

📄 shop.java

📁 基于JSP的家电连锁超市管理系统 数据库也在文件内
💻 JAVA
字号:
package electric.dbs;

public class Shop
{
	private int Id;
    private String Username;
    private String Password;
    private String Shopname;
    private String Area;
    private String Peopleman;
    private String Mantel;
    private String Shoptel;
    private int Usertype;
    private String Createdate;
    private int Status;
    
    public Shop()
    {
    }
    
    //getxxx()
    public int getId()
    {
    	return this.Id;
    }
    public String getUsername()
    {
    	return this.Username;
    }
    public String getPassword()
    {
    	return this.Password;
    }
    public String getShopname()
    {
    	return this.Shopname;
    }
    public String getArea()
    {
    	return this.Area;
    }
    public String getPeopleman()
    {
    	return this.Peopleman;
    }
    public String getMantel()
    {
    	return this.Mantel;
    }
    public String getShoptel()
    {
    	return this.Shoptel;
    }
    public int getUsertype()
    {
    	return this.Usertype;
    }
    public String getCreatedate()
    {
    	return this.Createdate;
    }
    public int getStatus()
    {
    	return this.Status;
    } 
    //setXXX() 方法
    public void setId(int Id)
    {
    	this.Id=Id;
    }
    public void setUsername(String Username)
    {
    	this.Username=Username;  
    }
    public void setPassword(String Password)
    {
    	this.Password=Password;
    }
    public void setShopname(String Shopname)
    {
    	this.Shopname=Shopname;
    }
    public void setArea(String Area)
    {
    	this.Area=Area;
    }
    public void setPeopleman(String Peopleman)
    {
    	this.Peopleman=Peopleman;
    }
    public void setMantel(String Mantel)
    {
    	this.Mantel=Mantel;
    }
    public void setShoptel(String Shoptel)
    {
    	this.Shoptel=Shoptel;
    }
    public void setUsertype(int Usertype)
    {
    	this.Usertype=Usertype;
    }
    public void setCreatedate(String Createdate)
    {
    	this.Createdate=Createdate;
    }
    public void setStatus(int Status)
    {
    	this.Status=Status;
    }   
}

⌨️ 快捷键说明

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