AbstractTtype.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.system;
  2. /**
  3.  * AbstractTtype generated by MyEclipse - Hibernate Tools
  4.  */
  5. public abstract class AbstractTtype  implements java.io.Serializable {
  6.     // Fields    
  7.      private long tid;
  8.      private String tname;
  9.      private String tmemo;
  10.     // Constructors
  11.     /** default constructor */
  12.     public AbstractTtype() {
  13.     }
  14.     
  15.     /** full constructor */
  16.     public AbstractTtype(String tname, String tmemo) {
  17.         this.tname = tname;
  18.         this.tmemo = tmemo;
  19.     }
  20.     
  21.    
  22.     // Property accessors
  23.     public long getTid() {
  24.         return this.tid;
  25.     }
  26.     
  27.     public void setTid(long tid) {
  28.         this.tid = tid;
  29.     }
  30.     public String getTname() {
  31.         return this.tname;
  32.     }
  33.     
  34.     public void setTname(String tname) {
  35.         this.tname = tname;
  36.     }
  37.     public String getTmemo() {
  38.         return this.tmemo;
  39.     }
  40.     
  41.     public void setTmemo(String tmemo) {
  42.         this.tmemo = tmemo;
  43.     }
  44.    
  45. }