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

📄 customer.java

📁 网上购物系统
💻 JAVA
字号:
package Model_Customer;

public class Customer 
{
  private String CustomerID;
  private String CustomerName;
  private String CustomerSex;
  private String CustomerIdentityCard;
  private String CustomerProvince;
  private String CustomerCity;
  private String CustomerAddress;
  private String CustomerZipCode;
  private String CustomerEmail;
  private String CustomerTel;

  public Customer()
  {
  }
  
  public Customer(String CustomerID,String CustomerName,String CustomerSex,String CustomerIdentityCard,String CustomerProvince,String CustomerCity,String CustomerAddress,String CustomerZipCode,String CustomerEmail,String CustomerTel)
  {
    this.CustomerID=CustomerID;
    this.CustomerName=CustomerName;
    this.CustomerSex=CustomerSex;
    this.CustomerIdentityCard=CustomerIdentityCard;
    this.CustomerProvince=CustomerProvince;
    this.CustomerCity=CustomerCity;
    this.CustomerAddress=CustomerAddress;
    this.CustomerZipCode=CustomerZipCode;
    this.CustomerEmail=CustomerEmail;
    this.CustomerTel=CustomerTel;
  }

  public String getCustomerID()
  {
    return CustomerID;
  }

  public void setCustomerID(String CustomerID)
  {
    this.CustomerID = CustomerID;
  }

  public String getCustomerName()
  {
    return CustomerName;
  }

  public void setCustomerName(String CustomerName)
  {
    this.CustomerName = CustomerName;
  }

  public String getCustomerSex()
  {
    return CustomerSex;
  }

  public void setCustomerSex(String CustomerSex)
  {
    this.CustomerSex = CustomerSex;
  }

  public String getCustomerIdentityCard()
  {
    return CustomerIdentityCard;
  }

  public void setCustomerIdentityCard(String CustomerIdentityCard)
  {
    this.CustomerIdentityCard = CustomerIdentityCard;
  }

  public String getCustomerProvince()
  {
    return CustomerProvince;
  }

  public void setCustomerProvince(String CustomerProvince)
  {
    this.CustomerProvince = CustomerProvince;
  }

  public String getCustomerCity()
  {
    return CustomerCity;
  }

  public void setCustomerCity(String CustomerCity)
  {
    this.CustomerCity = CustomerCity;
  }

  public String getCustomerAddress()
  {
    return CustomerAddress;
  }

  public void setCustomerAddress(String CustomerAddress)
  {
    this.CustomerAddress = CustomerAddress;
  }

  public String getCustomerZipCode()
  {
    return CustomerZipCode;
  }

  public void setCustomerZipCode(String CustomerZipCode)
  {
    this.CustomerZipCode = CustomerZipCode;
  }

  public String getCustomerEmail()
  {
    return CustomerEmail;
  }

  public void setCustomerEmail(String CustomerEmail)
  {
    this.CustomerEmail = CustomerEmail;
  }

  public String getCustomerTel()
  {
    return CustomerTel;
  }

  public void setCustomerTel(String CustomerTel)
  {
    this.CustomerTel = CustomerTel;
  }
}

⌨️ 快捷键说明

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