📄 trainclassvo.java
字号:
package com.galaxy.vo;
import java.util.HashSet;
import java.util.Set;
/**
* TrainClass generated by MyEclipse Persistence Tools
*/
public class TrainClassVO implements java.io.Serializable {
// Fields
private Long tcId;
private String tcName;
private String tcTag;
private String tcExtend;
private Set trainRecords = new HashSet(0);
// Constructors
/** default constructor */
public TrainClassVO() {
}
/** minimal constructor */
public TrainClassVO(Long tcId) {
this.tcId = tcId;
}
/** full constructor */
public TrainClassVO(Long tcId, String tcName, String tcTag, String tcExtend,
Set trainRecords) {
this.tcId = tcId;
this.tcName = tcName;
this.tcTag = tcTag;
this.tcExtend = tcExtend;
this.trainRecords = trainRecords;
}
// Property accessors
public Long getTcId() {
return this.tcId;
}
public void setTcId(Long tcId) {
this.tcId = tcId;
}
public String getTcName() {
return this.tcName;
}
public void setTcName(String tcName) {
this.tcName = tcName;
}
public String getTcTag() {
return this.tcTag;
}
public void setTcTag(String tcTag) {
this.tcTag = tcTag;
}
public String getTcExtend() {
return this.tcExtend;
}
public void setTcExtend(String tcExtend) {
this.tcExtend = tcExtend;
}
public Set getTrainRecords() {
return this.trainRecords;
}
public void setTrainRecords(Set trainRecords) {
this.trainRecords = trainRecords;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -