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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.pub.ectomere;
  2. import java.io.Serializable;
  3. /**
  4.  * AbstractTexterior generated by MyEclipse - Hibernate Tools
  5.  */
  6. public abstract class AbstractTexterior  implements Serializable {
  7.     // Fields    
  8. private int hashValue = 0;
  9.      private long eid; 
  10.      private String eunit;
  11.      private String did;
  12.      private String etype;
  13.      private String eaddress;
  14.      private String ephone;
  15.      private String eemail;
  16.      private String elinkman;
  17.      private String ememo;
  18.      private String eaddtime;
  19.      private String uno;
  20.      
  21.      private String pname;
  22.      
  23.     
  24.     // Constructors
  25.     /** default constructor */
  26.     public AbstractTexterior() {
  27.     }
  28. /** minimal constructor */
  29.     public AbstractTexterior(String eunit, String ephone, String elinkman, String eaddtime, String uno) {
  30.         this.eunit = eunit;
  31.         this.ephone = ephone;
  32.         this.elinkman = elinkman;
  33.         this.eaddtime = eaddtime;
  34.         this.uno = uno;
  35.     }
  36.     
  37.     /** full constructor */
  38.     public AbstractTexterior(String eunit, String did, String etype, String eaddress, String ephone, String eemail, String elinkman, String ememo, String eaddtime, String uno) {
  39.         this.eunit = eunit;
  40.         this.did = did;
  41.         this.etype = etype;
  42.         this.eaddress = eaddress;
  43.         this.ephone = ephone;
  44.         this.eemail = eemail;
  45.         this.elinkman = elinkman;
  46.         this.ememo = ememo;
  47.         this.eaddtime = eaddtime;
  48.         this.uno = uno;
  49.     }
  50.     
  51.    
  52.     // Property accessors
  53.     public long getEid() {
  54.         return this.eid;
  55.     }
  56.     
  57.     public void setEid(long eid) {
  58.         this.eid = eid;
  59.     }
  60.     public String getEunit() {
  61.         return this.eunit;
  62.     }
  63.     
  64.     public void setEunit(String eunit) {
  65.         this.eunit = eunit;
  66.     }
  67.     public String getDid() {
  68.         return this.did;
  69.     }
  70.     
  71.     public void setDid(String did) {
  72.         this.did = did;
  73.     }
  74.     public String getEtype() {
  75.         return this.etype;
  76.     }
  77.     
  78.     public void setEtype(String etype) {
  79.         this.etype = etype;
  80.     }
  81.     public String getEaddress() {
  82.         return this.eaddress;
  83.     }
  84.     
  85.     public void setEaddress(String eaddress) {
  86.         this.eaddress = eaddress;
  87.     }
  88.     public String getEphone() {
  89.         return this.ephone;
  90.     }
  91.     
  92.     public void setEphone(String ephone) {
  93.         this.ephone = ephone;
  94.     }
  95.     public String getEemail() {
  96.         return this.eemail;
  97.     }
  98.     
  99.     public void setEemail(String eemail) {
  100.         this.eemail = eemail;
  101.     }
  102.     public String getElinkman() {
  103.         return this.elinkman;
  104.     }
  105.     
  106.     public void setElinkman(String elinkman) {
  107.         this.elinkman = elinkman;
  108.     }
  109.     public String getEmemo() {
  110.         return this.ememo;
  111.     }
  112.     
  113.     public void setEmemo(String ememo) {
  114.         this.ememo = ememo;
  115.     }
  116.     public String getEaddtime() {
  117.         return this.eaddtime;
  118.     }
  119.     
  120.     public void setEaddtime(String eaddtime) {
  121.         this.eaddtime = eaddtime;
  122.     }
  123.     public String getUno() {
  124.         return this.uno;
  125.     }
  126.     
  127.     public void setUno(String uno) {
  128.         this.uno = uno;
  129.     }
  130.     /**
  131.      * Implementation of the equals comparison on the basis of equality of the primary key values.
  132.      * @param rhs
  133.      * @return boolean
  134.      */
  135.    /* public boolean equals(Object rhs)
  136.     {
  137.         if (rhs == null)
  138.             return false;
  139.         if (! (rhs instanceof Texterior))
  140.             return false;
  141.         Texterior that = (Texterior) rhs;
  142.         if (this.getEid() == null || that.getEid() == null)
  143.             return false;
  144.         return (this.getEid().equals(that.getEid()));
  145.     }
  146.     /**
  147.      * Implementation of the hashCode method conforming to the Bloch pattern with
  148.      * the exception of array properties (these are very unlikely primary key types).
  149.      * @return int
  150.      */
  151.    /* public int hashCode()
  152.     {
  153.         if (this.hashValue == 0)
  154.         {
  155.             int result = 17;
  156.             int itemidValue = this.getEid() == null ? 0 : this.getEid().hashCode();
  157.             result = result * 37 + itemidValue;
  158.             this.hashValue = result;
  159.         }
  160.         return this.hashValue;
  161.     }*/
  162. public String getPname() {
  163. return pname;
  164. }
  165. public void setPname(String pname) {
  166. this.pname = pname;
  167. }
  168. }