📄 trainrecordvo.java
字号:
package com.galaxy.vo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* TrainRecord generated by MyEclipse Persistence Tools
*/
public class TrainRecordVO implements java.io.Serializable {
// Fields
private Long trId;
private TrainClassVO trainClass;
private String trName;
private String trCharacter;
private Date startTime;
private Date endTime;
private Date trCoursetime;
private Long trFee;
private String trPlace;
private String trOrgnization;
private String trForm;
private String trManager;
private String trTeacher;
private String trCourse;
private String trState;
private String trExtend;
private Set trUiRses = new HashSet(0);
// Constructors
/** default constructor */
public TrainRecordVO() {
}
/** minimal constructor */
public TrainRecordVO(Long trId) {
this.trId = trId;
}
/** full constructor */
public TrainRecordVO(Long trId, TrainClassVO trainClass, String trName,
String trCharacter, Date startTime, Date endTime,
Date trCoursetime, Long trFee, String trPlace,
String trOrgnization, String trForm, String trManager,
String trTeacher, String trCourse, String trState, String trExtend,
Set trUiRses) {
this.trId = trId;
this.trainClass = trainClass;
this.trName = trName;
this.trCharacter = trCharacter;
this.startTime = startTime;
this.endTime = endTime;
this.trCoursetime = trCoursetime;
this.trFee = trFee;
this.trPlace = trPlace;
this.trOrgnization = trOrgnization;
this.trForm = trForm;
this.trManager = trManager;
this.trTeacher = trTeacher;
this.trCourse = trCourse;
this.trState = trState;
this.trExtend = trExtend;
this.trUiRses = trUiRses;
}
// Property accessors
public Long getTrId() {
return this.trId;
}
public void setTrId(Long trId) {
this.trId = trId;
}
public TrainClassVO getTrainClass() {
return this.trainClass;
}
public void setTrainClass(TrainClassVO trainClass) {
this.trainClass = trainClass;
}
public String getTrName() {
return this.trName;
}
public void setTrName(String trName) {
this.trName = trName;
}
public String getTrCharacter() {
return this.trCharacter;
}
public void setTrCharacter(String trCharacter) {
this.trCharacter = trCharacter;
}
public Date getStartTime() {
return this.startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public Date getTrCoursetime() {
return this.trCoursetime;
}
public void setTrCoursetime(Date trCoursetime) {
this.trCoursetime = trCoursetime;
}
public Long getTrFee() {
return this.trFee;
}
public void setTrFee(Long trFee) {
this.trFee = trFee;
}
public String getTrPlace() {
return this.trPlace;
}
public void setTrPlace(String trPlace) {
this.trPlace = trPlace;
}
public String getTrOrgnization() {
return this.trOrgnization;
}
public void setTrOrgnization(String trOrgnization) {
this.trOrgnization = trOrgnization;
}
public String getTrForm() {
return this.trForm;
}
public void setTrForm(String trForm) {
this.trForm = trForm;
}
public String getTrManager() {
return this.trManager;
}
public void setTrManager(String trManager) {
this.trManager = trManager;
}
public String getTrTeacher() {
return this.trTeacher;
}
public void setTrTeacher(String trTeacher) {
this.trTeacher = trTeacher;
}
public String getTrCourse() {
return this.trCourse;
}
public void setTrCourse(String trCourse) {
this.trCourse = trCourse;
}
public String getTrState() {
return this.trState;
}
public void setTrState(String trState) {
this.trState = trState;
}
public String getTrExtend() {
return this.trExtend;
}
public void setTrExtend(String trExtend) {
this.trExtend = trExtend;
}
public Set getTrUiRses() {
return this.trUiRses;
}
public void setTrUiRses(Set trUiRses) {
this.trUiRses = trUiRses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -