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

📄 docleave.java

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

import java.util.Date;


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

public class Docleave  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String sender;
     private String deptid;
     private String postid;
     private String title;
     private String leavetype;
     private String leaveplace;
     private String tel;
     private String starttime;
     private String endtime;
     private Integer totalday;
     private Integer totalhour;
     private String state;
     private Date date;


    // Constructors

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

	/** minimal constructor */
    public Docleave(String sender, String deptid, String postid, String leavetype, String leaveplace, String tel, String starttime, String endtime, Date date) {
        this.sender = sender;
        this.deptid = deptid;
        this.postid = postid;
        this.leavetype = leavetype;
        this.leaveplace = leaveplace;
        this.tel = tel;
        this.starttime = starttime;
        this.endtime = endtime;
        this.date = date;
    }
    
    /** full constructor */
    public Docleave(String sender, String deptid, String postid, String leavetype, String leaveplace, String tel, String starttime, String endtime, Integer totalday, Integer totalhour, Date date) {
        this.sender = sender;
        this.deptid = deptid;
        this.postid = postid;
        this.leavetype = leavetype;
        this.leaveplace = leaveplace;
        this.tel = tel;
        this.starttime = starttime;
        this.endtime = endtime;
        this.totalday = totalday;
        this.totalhour = totalhour;
        this.date = date;
    }

   
    // Property accessors

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

    public String getSender() {
        return this.sender;
    }
    
    public void setSender(String sender) {
        this.sender = sender;
    }

    public String getDeptid() {
        return this.deptid;
    }
    
    public void setDeptid(String deptid) {
        this.deptid = deptid;
    }

    public String getPostid() {
        return this.postid;
    }
    
    public void setPostid(String postid) {
        this.postid = postid;
    }

    public String getLeavetype() {
        return this.leavetype;
    }
    
    public void setLeavetype(String leavetype) {
        this.leavetype = leavetype;
    }

    public String getLeaveplace() {
        return this.leaveplace;
    }
    
    public void setLeaveplace(String leaveplace) {
        this.leaveplace = leaveplace;
    }

    public String getTel() {
        return this.tel;
    }
    
    public void setTel(String tel) {
        this.tel = tel;
    }

    public String getStarttime() {
        return this.starttime;
    }
    
    public void setStarttime(String starttime) {
        this.starttime = starttime;
    }

    public String getEndtime() {
        return this.endtime;
    }
    
    public void setEndtime(String endtime) {
        this.endtime = endtime;
    }

    public Integer getTotalday() {
        return this.totalday;
    }
    
    public void setTotalday(Integer totalday) {
        this.totalday = totalday;
    }

    public Integer getTotalhour() {
        return this.totalhour;
    }
    
    public void setTotalhour(Integer totalhour) {
        this.totalhour = totalhour;
    }

    public Date getDate() {
        return this.date;
    }
    
    public void setDate(Date date) {
        this.date = date;
    }

	public String getState() {
		return state;
	}

	public void setState(String state) {
		this.state = state;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}
}

⌨️ 快捷键说明

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