⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 team.java

📁 使用spring ,hibernate 框架的稽查管理系统
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -