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

📄 deptsystem.java

📁 一个oa系统
💻 JAVA
字号:
package com.oa.db;

import java.util.Date;


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

public class Deptsystem  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String topic;
     private String department;
     private String content;
     private Date adddata;
     private String promulgator;


    // Constructors

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

	/** minimal constructor */
    public Deptsystem(Date adddata) {
        this.adddata = adddata;
    }
    
    /** full constructor */
    public Deptsystem(String topic, String department, String content, Date adddata, String promulgator) {
        this.topic = topic;
        this.department = department;
        this.content = content;
        this.adddata = adddata;
        this.promulgator = promulgator;
    }

   
    // Property accessors

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

    public String getTopic() {
        return this.topic;
    }
    
    public void setTopic(String topic) {
        this.topic = topic;
    }

    public String getDepartment() {
        return this.department;
    }
    
    public void setDepartment(String department) {
        this.department = department;
    }

    public String getContent() {
        return this.content;
    }
    
    public void setContent(String content) {
        this.content = content;
    }

    public Date getAdddata() {
        return this.adddata;
    }
    
    public void setAdddata(Date adddata) {
        this.adddata = adddata;
    }

    public String getPromulgator() {
        return this.promulgator;
    }
    
    public void setPromulgator(String promulgator) {
        this.promulgator = promulgator;
    }
}

⌨️ 快捷键说明

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