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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.hints;
  2. import com.oa.module.office.user.Tuser;
  3. /**
  4.  * AbstractThints generated by MyEclipse - Hibernate Tools
  5.  */
  6. public abstract class AbstractThints  implements java.io.Serializable {
  7.     // Fields    
  8.      private String uno;
  9.      private String hshowtype;
  10.      private String hshowtime;
  11.      private String haffair;
  12.      private String hmeeting;
  13.      private String hemail;
  14.      private String hmemo;
  15.      private Tuser user;
  16.     // Constructors
  17.     public Tuser getUser() {
  18. return user;
  19. }
  20. public void setUser(Tuser user) {
  21. this.user = user;
  22. }
  23. /** default constructor */
  24.     public AbstractThints() {
  25.     }
  26. /** minimal constructor */
  27.     public AbstractThints(String uno, String hshowtype) {
  28.         this.uno = uno;
  29.         this.hshowtype = hshowtype;
  30.     }
  31.     
  32.     /** full constructor */
  33.     public AbstractThints(String uno, String hshowtype, String hshowtime, String haffair, String hmeeting, String hemail, String hmemo) {
  34.         this.uno = uno;
  35.         this.hshowtype = hshowtype;
  36.         this.hshowtime = hshowtime;
  37.         this.haffair = haffair;
  38.         this.hmeeting = hmeeting;
  39.         this.hemail = hemail;
  40.         this.hmemo = hmemo;
  41.     }
  42.     
  43.    
  44.     // Property accessors
  45.     public String getUno() {
  46.         return this.uno;
  47.     }
  48.     
  49.     public void setUno(String uno) {
  50.         this.uno = uno;
  51.     }
  52.     public String getHshowtype() {
  53.         return this.hshowtype;
  54.     }
  55.     
  56.     public void setHshowtype(String hshowtype) {
  57.         this.hshowtype = hshowtype;
  58.     }
  59.     public String getHshowtime() {
  60.         return this.hshowtime;
  61.     }
  62.     
  63.     public void setHshowtime(String hshowtime) {
  64.         this.hshowtime = hshowtime;
  65.     }
  66.     public String getHaffair() {
  67.         return this.haffair;
  68.     }
  69.     
  70.     public void setHaffair(String haffair) {
  71.         this.haffair = haffair;
  72.     }
  73.     public String getHmeeting() {
  74.         return this.hmeeting;
  75.     }
  76.     
  77.     public void setHmeeting(String hmeeting) {
  78.         this.hmeeting = hmeeting;
  79.     }
  80.     public String getHemail() {
  81.         return this.hemail;
  82.     }
  83.     
  84.     public void setHemail(String hemail) {
  85.         this.hemail = hemail;
  86.     }
  87.     public String getHmemo() {
  88.         return this.hmemo;
  89.     }
  90.     
  91.     public void setHmemo(String hmemo) {
  92.         this.hmemo = hmemo;
  93.     }
  94.    
  95. }