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

📄 feedbacktable.java

📁 这是一个用java三层框架做的ISS学员管理系统
💻 JAVA
字号:
package com.isoftstone.isscrmweb.web.mapping;



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

public class Feedbacktable extends org.pontifex.web.mapping.PageInfo implements java.io.Serializable {


     private float score;


    // Constructors

    /** default constructor */
    public Feedbacktable() {
    }
    private Feeback feeback;
    private Title title;
    private Studentinfo studentinfo;


  
   // Property accessors

   public Feeback getFeeback() {
       return this.feeback;
   }
   
   public void setFeeback(Feeback feeback) {
       this.feeback = feeback;
   }

   public Title getTitle() {
       return this.title;
   }
   
   public void setTitle(Title title) {
       this.title = title;
   }

   public Studentinfo getStudentinfo() {
       return this.studentinfo;
   }
   
   public void setStudentinfo(Studentinfo studentinfo) {
       this.studentinfo = studentinfo;
   }
  



  public boolean equals(Object other) {
        if ( (this == other ) ) return true;
		 if ( (other == null ) ) return false;
		 if ( !(other instanceof Feedbacktable) ) return false;
		 Feedbacktable castOther = ( Feedbacktable ) other; 
        
		 return ( (this.getFeeback()==castOther.getFeeback()) || ( this.getFeeback()!=null && castOther.getFeeback()!=null && this.getFeeback().equals(castOther.getFeeback()) ) )
&& ( (this.getTitle()==castOther.getTitle()) || ( this.getTitle()!=null && castOther.getTitle()!=null && this.getTitle().equals(castOther.getTitle()) ) )
&& ( (this.getStudentinfo()==castOther.getStudentinfo()) || ( this.getStudentinfo()!=null && castOther.getStudentinfo()!=null && this.getStudentinfo().equals(castOther.getStudentinfo()) ) );
  }
  
  public int hashCode() {
        int result = 17;
        
        result = 37 * result + ( getFeeback() == null ? 0 : this.getFeeback().hashCode() );
        result = 37 * result + ( getTitle() == null ? 0 : this.getTitle().hashCode() );
        result = 37 * result + ( getStudentinfo() == null ? 0 : this.getStudentinfo().hashCode() );
        return result;
  }   





   
    // Property accessor

    public float getScore() {
        return this.score;
    }
    
    public void setScore(float score) {
        this.score = score;
    }
   








}

⌨️ 快捷键说明

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