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

📄 company.java

📁 JSP+Struts+缓存的公司管理系统
💻 JAVA
字号:
//---------------------------------------------------------
// Application: Company Applcation
// Author     : Cao guangxin
// File       : Company.java
//
// Copyright 2006 RelationInfo Software
// Writed at Wed Apr 12 08:58:55 CST 2006
// writed by Eclipse SDK
// Visit http://www.37signals.cn
//---------------------------------------------------------

package net.cn37signals.company.model;

public class Company {
  private String name;
  private String address;
  private String city;
  private String zip;
  private String country;
  private java.util.Date foundDate;
  private long id;

  public String getName() {
    return name;
  }
  public String getAddress() {
    return address;
  }
  public String getCity() {
    return city;
  }
  public String getZip() {
    return zip;
  }
  public String getCountry() {
    return country;
  }
  public java.util.Date getFoundDate() {
    return foundDate;
  }
  public long getId() {
    return id;
  }

  public void setName(String name) {
    this.name = name;
  }
  public void setAddress(String address) {
    this.address = address;
  }
  public void setCity(String city) {
    this.city = city;
  }
  public void setZip(String zip) {
    this.zip = zip;
  }
  public void setCountry(String country) {
    this.country = country;
  }
  public void setFoundDate(java.util.Date foundDate) {
    this.foundDate = foundDate;
  }
  public void setId(long id) {
    this.id = id;
  }
}

⌨️ 快捷键说明

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