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

📄 catalog.java

📁 webWork+Spring+Hibernate整合开发网络书城,通过这个项目
💻 JAVA
字号:
package org.thj.bookstore.vo;

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


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

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


    // Fields    

     private Integer catalogid;
     private String catalogname;
     private Set books = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public Catalog(String catalogname) {
        this.catalogname = catalogname;
    }
    
    /** full constructor */
    public Catalog(String catalogname, Set books) {
        this.catalogname = catalogname;
        this.books = books;
    }

   
    // Property accessors

    public Integer getCatalogid() {
        return this.catalogid;
    }
    
    public void setCatalogid(Integer catalogid) {
        this.catalogid = catalogid;
    }

    public String getCatalogname() {
        return this.catalogname;
    }
    
    public void setCatalogname(String catalogname) {
        this.catalogname = catalogname;
    }

    public Set getBooks() {
        return this.books;
    }
    
    public void setBooks(Set books) {
        this.books = books;
    }
   








}

⌨️ 快捷键说明

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