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

📄 project.java

📁 java实现安全系统的开源代码 java实现安全系统的开源代码
💻 JAVA
字号:
package com.starit.model;

import java.util.Date;


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

public class Project  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private Account account;
     private String name;
     private String text;
     private Date createAt;
     private Date updateAt;


    // Constructors

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

	/** minimal constructor */
    public Project(Date createAt) {
        this.createAt = createAt;
    }
    
    /** full constructor */
    public Project(Account account, String name, String text, Date createAt, Date updateAt) {
        this.account = account;
        this.name = name;
        this.text = text;
        this.createAt = createAt;
        this.updateAt = updateAt;
    }

   
    // Property accessors

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    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 String getText() {
        return this.text;
    }
    
    public void setText(String text) {
        this.text = text;
    }

    public Date getCreateAt() {
        return this.createAt;
    }
    
    public void setCreateAt(Date createAt) {
        this.createAt = createAt;
    }

    public Date getUpdateAt() {
        return this.updateAt;
    }
    
    public void setUpdateAt(Date updateAt) {
        this.updateAt = updateAt;
    }
   








}

⌨️ 快捷键说明

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