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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.pub.affiche;
  2. /**
  3.  * AbstractTaffiche generated by MyEclipse - Hibernate Tools
  4.  */
  5. public abstract class AbstractTaffiche  implements java.io.Serializable {
  6.     // Fields    
  7.      private long aid;
  8.      private String atitle;
  9.      private String acontent;
  10.      private String affixname;
  11.      private String affixpath;
  12.      private String asendTime;
  13.      private String arealTime;
  14.      private String areguTime;
  15.      private String astate;
  16.      private String funo;
  17.      private String uno;
  18.      private String amemo;
  19.     // Constructors
  20.     /** default constructor */
  21.     public AbstractTaffiche() {
  22.     }
  23.     
  24.     /** full constructor */
  25.     public AbstractTaffiche(String atitle, String acontent, String affixname, String affixpath, String asendTime, String arealTime, String areguTime, String astate, String funo, String uno, String amemo) {
  26.         this.atitle = atitle;
  27.         this.acontent = acontent;
  28.         this.affixname = affixname;
  29.         this.affixpath = affixpath;
  30.         this.asendTime = asendTime;
  31.         this.arealTime = arealTime;
  32.         this.areguTime = areguTime;
  33.         this.astate = astate;
  34.         this.funo = funo;
  35.         this.uno = uno;
  36.         this.amemo = amemo;
  37.     }
  38.     
  39.    
  40.     // Property accessors
  41.     public long getAid() {
  42.         return this.aid;
  43.     }
  44.     
  45.     public void setAid(long aid) {
  46.         this.aid = aid;
  47.     }
  48.     public String getAtitle() {
  49.         return this.atitle;
  50.     }
  51.     
  52.     public void setAtitle(String atitle) {
  53.         this.atitle = atitle;
  54.     }
  55.     public String getAcontent() {
  56.         return this.acontent;
  57.     }
  58.     
  59.     public void setAcontent(String acontent) {
  60.         this.acontent = acontent;
  61.     }
  62.     public String getAffixname() {
  63.         return this.affixname;
  64.     }
  65.     
  66.     public void setAffixname(String affixname) {
  67.         this.affixname = affixname;
  68.     }
  69.     public String getAffixpath() {
  70.         return this.affixpath;
  71.     }
  72.     
  73.     public void setAffixpath(String affixpath) {
  74.         this.affixpath = affixpath;
  75.     }
  76.     public String getAsendTime() {
  77.         return this.asendTime;
  78.     }
  79.     
  80.     public void setAsendTime(String asendTime) {
  81.         this.asendTime = asendTime;
  82.     }
  83.     public String getArealTime() {
  84.         return this.arealTime;
  85.     }
  86.     
  87.     public void setArealTime(String arealTime) {
  88.         this.arealTime = arealTime;
  89.     }
  90.     public String getAreguTime() {
  91.         return this.areguTime;
  92.     }
  93.     
  94.     public void setAreguTime(String areguTime) {
  95.         this.areguTime = areguTime;
  96.     }
  97.     public String getAstate() {
  98.         return this.astate;
  99.     }
  100.     
  101.     public void setAstate(String astate) {
  102.         this.astate = astate;
  103.     }
  104.     public String getFuno() {
  105.         return this.funo;
  106.     }
  107.     
  108.     public void setFuno(String funo) {
  109.         this.funo = funo;
  110.     }
  111.     public String getUno() {
  112.         return this.uno;
  113.     }
  114.     
  115.     public void setUno(String uno) {
  116.         this.uno = uno;
  117.     }
  118.     public String getAmemo() {
  119.         return this.amemo;
  120.     }
  121.     
  122.     public void setAmemo(String amemo) {
  123.         this.amemo = amemo;
  124.     }
  125.    
  126. }