You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.2 KiB

2 years ago
  1. package com.spring.modules.base.entity;
  2. public class Role {
  3. /**
  4. *
  5. */
  6. private Integer id;
  7. /**
  8. * 工厂编码
  9. */
  10. private String site;
  11. /**
  12. * BU编码
  13. */
  14. private String roleNo;
  15. /**
  16. * BU名称
  17. */
  18. private String roleDesc;
  19. /**
  20. * 备注
  21. */
  22. private String remark;
  23. /**
  24. * 是否在用
  25. */
  26. private String active;
  27. public Integer getId() {
  28. return id;
  29. }
  30. public void setId(Integer id) {
  31. this.id = id;
  32. }
  33. public String getSite() {
  34. return site;
  35. }
  36. public void setSite(String site) {
  37. this.site = site;
  38. }
  39. public String getRoleNo() {
  40. return roleNo;
  41. }
  42. public void setRoleNo(String roleNo) {
  43. this.roleNo = roleNo;
  44. }
  45. public String getRoleDesc() {
  46. return roleDesc;
  47. }
  48. public void setRoleDesc(String roleDesc) {
  49. this.roleDesc = roleDesc;
  50. }
  51. public String getRemark() {
  52. return remark;
  53. }
  54. public void setRemark(String remark) {
  55. this.remark = remark;
  56. }
  57. public String getActive() {
  58. return active;
  59. }
  60. public void setActive(String active) {
  61. this.active = active;
  62. }
  63. }