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

📄 logidiovo.java

📁 spring+hibernate+struts开发的校务oa系统
💻 JAVA
字号:
package com.yondor.oa.db.logidio.dao;

import java.util.Date;

import com.yondor.oa.db.content.dao.Content;
import com.yondor.oa.db.operator.dao.Operator;

public class LogidioVO {

    // Fields    

     private Long logidioid;
     private Operator authorop;
     private String title;
     private Content contenttag;
     private String weather;
     private String mood;
     private Date issuetime;


    // Constructors

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

	/** minimal constructor */
    public LogidioVO(Operator authorop) {
        this.authorop = authorop;
    }
    
    /** full constructor */
    public LogidioVO(Operator authorop, String title, Content contenttag, String weather, String mood, Date issuetime) {
        this.authorop = authorop;
        this.title = title;
        this.contenttag = contenttag;
        this.weather = weather;
        this.mood = mood;
        this.issuetime = issuetime;
    }

   
    // Property accessors

    public Long getLogidioid() {
        return this.logidioid;
    }
    
    public void setLogidioid(Long logidioid) {
        this.logidioid = logidioid;
    }


	public Operator getAuthorop() {
		return authorop;
	}

	public void setAuthorop(Operator authorop) {
		this.authorop = authorop;
	}

	public Content getContenttag() {
		return contenttag;
	}

	public void setContenttag(Content contenttag) {
		this.contenttag = contenttag;
	}

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

    public String getWeather() {
        return this.weather;
    }
    
    public void setWeather(String weather) {
        this.weather = weather;
    }

    public String getMood() {
        return this.mood;
    }
    
    public void setMood(String mood) {
        this.mood = mood;
    }

    public Date getIssuetime() {
        return this.issuetime;
    }
    
    public void setIssuetime(Date issuetime) {
        this.issuetime = issuetime;
    }
   


}

⌨️ 快捷键说明

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