customer.java

来自「网上购物系统」· Java 代码 · 共 133 行

JAVA
133
字号
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 + =
减小字号Ctrl + -
显示快捷键?