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

📄 punish.java

📁 实现图书的借阅和管理信息化
💻 JAVA
字号:
package com.moonman.libraryManager.model.vo;

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


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

public class Punish  implements java.io.Serializable {


    // Fields    

     private Integer cfId;
     private Integer readerId;
     private Integer bookId;
     private String cfyy;
     private String cfjg;
     private Float fkje;
     private Set readers = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public Punish(Integer readerId, Integer bookId, String cfyy, String cfjg) {
        this.readerId = readerId;
        this.bookId = bookId;
        this.cfyy = cfyy;
        this.cfjg = cfjg;
    }
    
    /** full constructor */
    public Punish(Integer readerId, Integer bookId, String cfyy, String cfjg, Float fkje, Set readers) {
        this.readerId = readerId;
        this.bookId = bookId;
        this.cfyy = cfyy;
        this.cfjg = cfjg;
        this.fkje = fkje;
        this.readers = readers;
    }

   
    // Property accessors

    public Integer getCfId() {
        return this.cfId;
    }
    
    public void setCfId(Integer cfId) {
        this.cfId = cfId;
    }

    public Integer getReaderId() {
        return this.readerId;
    }
    
    public void setReaderId(Integer readerId) {
        this.readerId = readerId;
    }

    public Integer getBookId() {
        return this.bookId;
    }
    
    public void setBookId(Integer bookId) {
        this.bookId = bookId;
    }

    public String getCfyy() {
        return this.cfyy;
    }
    
    public void setCfyy(String cfyy) {
        this.cfyy = cfyy;
    }

    public String getCfjg() {
        return this.cfjg;
    }
    
    public void setCfjg(String cfjg) {
        this.cfjg = cfjg;
    }

    public Float getFkje() {
        return this.fkje;
    }
    
    public void setFkje(Float fkje) {
        this.fkje = fkje;
    }

    public Set getReaders() {
        return this.readers;
    }
    
    public void setReaders(Set readers) {
        this.readers = readers;
    }
   








}

⌨️ 快捷键说明

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