3090d0b94899001b1d82e753a621f0e9

来自「用jsf实现cd商店的程序」· 代码 · 共 75 行

TXT
75
字号
package com.tangjun.web.pojo;
// default package

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


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

public class CDType  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String typeName;
     //private Set cds = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public CDType(String typeName) {
        this.typeName = typeName;
    }
    
    /** full constructor */
    /*
    public CDType(String typeName, Set cds) {
        this.typeName = typeName;
        this.cds = cds;
    }
*/
   
    // Property accessors

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

    public String getTypeName() {
        return this.typeName;
    }
    
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
/*
    public Set getCds() {
        return this.cds;
    }
    
    public void setCds(Set cds) {
        this.cds = cds;
    }
   */








}

⌨️ 快捷键说明

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