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

📄 project.java

📁 icome
💻 JAVA
字号:
package com.icome.entity;

import java.util.Date;
import java.util.HashSet;
import java.util.Set;


/**
 * Project generated by MyEclipse - Hibernate Tools
 */

public class Project  implements java.io.Serializable {


    // Fields    

     private Integer pid;
     private Account account;
     private String name;
     private Date cdt;
     private Integer state;
     private String developer;
     private String about;
     private Set memberships = new HashSet(0);
     private Set contents = new HashSet(0);


    // Constructors

    /** default constructor */
    public Project() {
    }

	/** minimal constructor */
    public Project(String name) {
        this.name = name;
    }
    
    /** full constructor */
    public Project(Account account, String name, Date cdt, Integer state, String developer, String about, Set memberships, Set contents) {
        this.account = account;
        this.name = name;
        this.cdt = cdt;
        this.state = state;
        this.developer = developer;
        this.about = about;
        this.memberships = memberships;
        this.contents = contents;
    }

   
    // Property accessors

    public Integer getPid() {
        return this.pid;
    }
    
    private void setPid(Integer pid) {
        this.pid = pid;
    }

    public Account getAccount() {
        return this.account;
    }
    
    public void setAccount(Account account) {
        this.account = account;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public Date getCdt() {
        return this.cdt;
    }
    
    public void setCdt(Date cdt) {
        this.cdt = cdt;
    }

    public Integer getState() {
        return this.state;
    }
    
    public void setState(Integer state) {
        this.state = state;
    }

    public String getDeveloper() {
        return this.developer;
    }
    
    public void setDeveloper(String developer) {
        this.developer = developer;
    }

    public String getAbout() {
        return this.about;
    }
    
    public void setAbout(String about) {
        this.about = about;
    }

    public Set getMemberships() {
        return this.memberships;
    }
    
    public void setMemberships(Set memberships) {
        this.memberships = memberships;
    }

    public Set getContents() {
        return this.contents;
    }
    
    public void setContents(Set contents) {
        this.contents = contents;
    }
   








}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -