trainclassvo.java

来自「J2ee开发的 人事管理系统 使用oracle数据库 myeclips平台开」· Java 代码 · 共 87 行

JAVA
87
字号
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 + =
减小字号Ctrl + -
显示快捷键?