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

📄 type1.java

📁 只是一个宽带的收费管理系统 很值得大家学习
💻 JAVA
字号:
package cn.handson.base;

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


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

public class Type1  implements java.io.Serializable {


    // Fields    

     private Integer typeId;
     private String typeTitle;
     private String typeDesc;
     private Set constructs = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public Type1(String typeTitle) {
        this.typeTitle = typeTitle;
    }
    
    /** full constructor */
    public Type1(String typeTitle, String typeDesc, Set constructs) {
        this.typeTitle = typeTitle;
        this.typeDesc = typeDesc;
        this.constructs = constructs;
    }

   
    // Property accessors

    public Integer getTypeId() {
        return this.typeId;
    }
    
    public void setTypeId(Integer typeId) {
        this.typeId = typeId;
    }

    public String getTypeTitle() {
        return this.typeTitle;
    }
    
    public void setTypeTitle(String typeTitle) {
        this.typeTitle = typeTitle;
    }

    public String getTypeDesc() {
        return this.typeDesc;
    }
    
    public void setTypeDesc(String typeDesc) {
        this.typeDesc = typeDesc;
    }

    public Set getConstructs() {
        return this.constructs;
    }
    
    public void setConstructs(Set constructs) {
        this.constructs = constructs;
    }
   








}

⌨️ 快捷键说明

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