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

📄 abstractttype.java

📁 基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+struts+spring框架综合运用的系统。
💻 JAVA
字号:
package com.oa.module.system;



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

public abstract class AbstractTtype  implements java.io.Serializable {


    // Fields    

     private long tid;
     private String tname;
     private String tmemo;


    // Constructors

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

    
    /** full constructor */
    public AbstractTtype(String tname, String tmemo) {
        this.tname = tname;
        this.tmemo = tmemo;
    }
    

   
    // Property accessors

    public long getTid() {
        return this.tid;
    }
    
    public void setTid(long tid) {
        this.tid = tid;
    }

    public String getTname() {
        return this.tname;
    }
    
    public void setTname(String tname) {
        this.tname = tname;
    }

    public String getTmemo() {
        return this.tmemo;
    }
    
    public void setTmemo(String tmemo) {
        this.tmemo = tmemo;
    }
   








}

⌨️ 快捷键说明

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