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

📄 client.java

📁 j2ee项目应用 使用struts hibernate构建的轻量级j2ee项目
💻 JAVA
字号:
package com.emis.model.store.hibernate;

import java.util.HashSet;
import java.util.Set;


/**
 * Client generated by MyEclipse - Hibernate Tools
 */

public class Client  implements java.io.Serializable {


    // Fields    

     private String id;
     private String name;
     private String type;
     private String address;
     private String zip;
     private String phone;
     private String fax;
     private String remarks;
     private Set storeins = new HashSet(0);
     private Set storeouts = new HashSet(0);


    // Constructors

    /** default constructor */
    public Client() {
    }

	/** minimal constructor */
    public Client(String id, String name, String type, String address, String zip, String phone, String fax, String remarks) {
        this.id = id;
        this.name = name;
        this.type = type;
        this.address = address;
        this.zip = zip;
        this.phone = phone;
        this.fax = fax;
        this.remarks = remarks;
    }
    
    /** full constructor */
    public Client(String id, String name, String type, String address, String zip, String phone, String fax, String remarks, Set storeins, Set storeouts) {
        this.id = id;
        this.name = name;
        this.type = type;
        this.address = address;
        this.zip = zip;
        this.phone = phone;
        this.fax = fax;
        this.remarks = remarks;
        this.storeins = storeins;
        this.storeouts = storeouts;
    }

   
    // Property accessors

    public String getId() {
        return this.id;
    }
    
    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public String getType() {
        return this.type;
    }
    
    public void setType(String type) {
        this.type = type;
    }

    public String getAddress() {
        return this.address;
    }
    
    public void setAddress(String address) {
        this.address = address;
    }

    public String getZip() {
        return this.zip;
    }
    
    public void setZip(String zip) {
        this.zip = zip;
    }

    public String getPhone() {
        return this.phone;
    }
    
    public void setPhone(String phone) {
        this.phone = phone;
    }

    public String getFax() {
        return this.fax;
    }
    
    public void setFax(String fax) {
        this.fax = fax;
    }

    public String getRemarks() {
        return this.remarks;
    }
    
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }

    public Set getStoreins() {
        return this.storeins;
    }
    
    public void setStoreins(Set storeins) {
        this.storeins = storeins;
    }

    public Set getStoreouts() {
        return this.storeouts;
    }
    
    public void setStoreouts(Set storeouts) {
        this.storeouts = storeouts;
    }
   








}

⌨️ 快捷键说明

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