punish.java

来自「实现图书的借阅和管理信息化」· Java 代码 · 共 116 行

JAVA
116
字号
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 + =
减小字号Ctrl + -
显示快捷键?