logidio.java

来自「spring+hibernate+struts开发的校务oa系统」· Java 代码 · 共 115 行

JAVA
115
字号
package com.yondor.oa.db.logidio.dao;

import java.util.Date;

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


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

public class Logidio  implements java.io.Serializable {


    // Fields    

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


    // Constructors

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

	
    
    /** full constructor */
    public Logidio(Long authorop, String title, Long 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 Long getAuthorop() {
		return authorop;
	}

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

	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;
    }



	public Long getContenttag() {
		return contenttag;
	}



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








}

⌨️ 快捷键说明

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