archives.java

来自「本项目源码是一个真实的应用项目」· Java 代码 · 共 70 行

JAVA
70
字号
package org.langsin.computer.vo;

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


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

@SuppressWarnings("serial")
public class Archives  implements java.io.Serializable {


    // Fields    

     private Integer archivesid;
     private Customer customer;
     private Set customers = new HashSet(0);


    // Constructors

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

    
    /** full constructor */
    public Archives(Customer customer, Set customers) {
        this.customer = customer;
        this.customers = customers;
    }

   
    // Property accessors

    public Integer getArchivesid() {
        return this.archivesid;
    }
    
    public void setArchivesid(Integer archivesid) {
        this.archivesid = archivesid;
    }

    public Customer getCustomer() {
        return this.customer;
    }
    
    public void setCustomer(Customer customer) {
        this.customer = customer;
    }

    public Set getCustomers() {
        return this.customers;
    }
    
    public void setCustomers(Set customers) {
        this.customers = customers;
    }
   








}

⌨️ 快捷键说明

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