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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.office.role;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. /**
  5.  * AbstractTrole generated by MyEclipse - Hibernate Tools
  6.  */
  7. public abstract class AbstractTrole implements java.io.Serializable {
  8. // Fields
  9. private long rid; 
  10. private String rname;
  11. private String rmemo;
  12. private Set rolefunction = new HashSet();
  13. // Constructors
  14. /** default constructor */
  15. public AbstractTrole() {
  16. }
  17. /** full constructor */
  18. public AbstractTrole(String rname, String rmemo) {
  19. this.rname = rname;
  20. this.rmemo = rmemo;
  21. }
  22. // Property accessors
  23. public long getRid() {
  24. return this.rid;
  25. }
  26. public void setRid(long rid) {
  27. this.rid = rid;
  28. }
  29. public String getRname() {
  30. return this.rname;
  31. }
  32. public void setRname(String rname) {
  33. this.rname = rname;
  34. }
  35. public String getRmemo() {
  36. return this.rmemo;
  37. }
  38. public void setRmemo(String rmemo) {
  39. this.rmemo = rmemo;
  40. }
  41. public Set getRolefunction() {
  42. return rolefunction;
  43. }
  44. public void setRolefunction(Set rolefunction) {
  45. this.rolefunction = rolefunction;
  46. }
  47. }