team.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 106 行
JAVA
106 行
package com.je.ims.hibernate;
/**
* Team generated by MyEclipse - Hibernate Tools
*/
public class Team implements java.io.Serializable {
// Fields
private Long teamPk;
private Long year;
private String teamId;
private String teamName;
private Long showId;
private String description;
// Constructors
/** default constructor */
public Team() {
}
/** full constructor */
public Team(Long year, String teamId, String teamName, Long showId, String description) {
this.year = year;
this.teamId = teamId;
this.teamName = teamName;
this.showId = showId;
this.description = description;
}
/** full constructor */
public Team(Long teamPk, Long year, String teamId, String teamName, Long showId, String description) {
this.teamPk = teamPk;
this.year = year;
this.teamId = teamId;
this.teamName = teamName;
this.showId = showId;
this.description = description;
}
// Property accessors
public Long getTeamPk() {
return this.teamPk;
}
public void setTeamPk(Long teamPk) {
this.teamPk = teamPk;
}
public Long getYear() {
return this.year;
}
public void setYear(Long year) {
this.year = year;
}
public String getTeamId() {
return this.teamId;
}
public void setTeamId(String teamId) {
this.teamId = teamId;
}
public String getTeamName() {
return this.teamName;
}
public void setTeamName(String teamName) {
this.teamName = teamName;
}
public Long getShowId() {
return this.showId;
}
public void setShowId(Long showId) {
this.showId = showId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?