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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.office.user;
  2. /**
  3.  * AbstractTuserrole generated by MyEclipse - Hibernate Tools
  4.  */
  5. public abstract class AbstractTuserrole implements java.io.Serializable {
  6. // Fields
  7. private int hashValue = 0;
  8. private String urid;
  9. private String uno;
  10. private long rid;
  11. private Tuser user = null;
  12. // Constructors
  13. public Tuser getUser() {
  14. return user;
  15. }
  16. public void setUser(Tuser user) {
  17. this.user = user;
  18. }
  19. /** default constructor */
  20. public AbstractTuserrole() {
  21. }
  22. /** full constructor */
  23. public AbstractTuserrole(String uno, long rid) {
  24. this.uno = uno;
  25. this.rid = rid;
  26. }
  27. // Property accessors
  28. public String getUrid() {
  29. return this.urid;
  30. }
  31. public void setUrid(String urid) {
  32. this.urid = urid;
  33. }
  34. public String getUno() {
  35. return this.uno;
  36. }
  37. public void setUno(String uno) {
  38. this.uno = uno;
  39. }
  40. public long getRid() {
  41. return this.rid;
  42. }
  43. public void setRid(long rid) {
  44. this.rid = rid;
  45. }
  46. public boolean equals(Object rhs) {
  47. if (rhs == null)
  48. return false;
  49. if (!(rhs instanceof Tuserrole))
  50. return false;
  51. Tuserrole that = (Tuserrole) rhs;
  52. if (this.getUrid() == null || that.getUrid() == null)
  53. return false;
  54. return (this.getUrid().equals(that.getUrid()));
  55. }
  56. public int hashCode() {
  57. if (this.hashValue == 0) {
  58. int result = 17;
  59. int uridValue = this.getUrid() == null ? 0 : this.getUrid()
  60. .hashCode();
  61. result = result * 37 + uridValue;
  62. this.hashValue = result;
  63. }
  64. return this.hashValue;
  65. }
  66. }