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

📄 result.java

📁 j2ee项目应用 使用struts hibernate构建的轻量级j2ee项目
💻 JAVA
字号:
package com.emis.model.vote.hibernate;

import com.emis.model.hr.hibernate.Employee;



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

public class Result  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private Employee employee;
     private Choice choice;


    // Constructors

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

    
    /** full constructor */
    public Result(Integer id, Employee employee, Choice choice) {
        this.id = id;
        this.employee = employee;
        this.choice = choice;
    }

   
    // Property accessors

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

    public Employee getEmployee() {
        return this.employee;
    }
    
    public void setEmployee(Employee employee) {
        this.employee = employee;
    }

    public Choice getChoice() {
        return this.choice;
    }
    
    public void setChoice(Choice choice) {
        this.choice = choice;
    }
   








}

⌨️ 快捷键说明

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