b0aad6b94899001b1d82e753a621f0e9

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

TXT
93
字号
package com.tangjun.web.pojo;

// default package



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

public class CD  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private CDType cdtype;
     private String artist;
     private String specialTitle;
     private float price;


    // Constructors

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

	/** minimal constructor */
    public CD(CDType cdtype) {
        this.cdtype = cdtype;
    }
    
    /** full constructor */
    public CD(CDType cdtype, String artist, String specialTitle, float price) {
        this.cdtype = cdtype;
        this.artist = artist;
        this.specialTitle = specialTitle;
        this.price = price;
    }

   
    // Property accessors

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

    public CDType getCdtype() {
        return this.cdtype;
    }
    
    public void setCdtype(CDType cdtype) {
        this.cdtype = cdtype;
    }

    public String getArtist() {
        return this.artist;
    }
    
    public void setArtist(String artist) {
        this.artist = artist;
    }

    public String getSpecialTitle() {
        return this.specialTitle;
    }
    
    public void setSpecialTitle(String specialTitle) {
        this.specialTitle = specialTitle;
    }

    public float getPrice() {
        return this.price;
    }
    
    public void setPrice(float price) {
        this.price = price;
    }
   








}

⌨️ 快捷键说明

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