?? result.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 + -