XIFuncRecode.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.miniframe.model;
  2. import java.io.Serializable;
  3. public class XIFuncRecode implements Serializable {
  4. private static final long serialVersionUID = -1463838678425832212L;
  5. String funcId;//功能ID
  6. /**
  7. * 功能ID
  8. */
  9. public void setFuncId(String funcId) {
  10. this.funcId = funcId;
  11. }
  12. /**
  13. * 功能ID
  14. */
  15. public String getFuncId() {
  16. return this.funcId;
  17. }
  18. String funcName;//功能名称
  19. /**
  20. * 功能名称
  21. */
  22. public void setFuncName(String funcName) {
  23. this.funcName = funcName;
  24. }
  25. /**
  26. * 功能名称
  27. */
  28. public String getFuncName() {
  29. return this.funcName;
  30. }
  31. String funcClass;//功能分类
  32. /**
  33. * 功能分类
  34. */
  35. public void setFuncClass(String funcClass) {
  36. this.funcClass = funcClass;
  37. }
  38. /**
  39. * 功能分类
  40. */
  41. public String getFuncClass() {
  42. return this.funcClass;
  43. }
  44. String funcDesc;//功能说明
  45. /**
  46. * 功能说明
  47. */
  48. public void setFuncDesc(String funcDesc) {
  49. this.funcDesc = funcDesc;
  50. }
  51. /**
  52. * 功能说明
  53. */
  54. public String getFuncDesc() {
  55. return this.funcDesc;
  56. }
  57. String isUserCheck;//当前用户是否选中
  58. /**
  59. * 当前用户是否选中
  60. */
  61. public void setIsUserCheck(String isUserCheck) {
  62. this.isUserCheck = isUserCheck;
  63. }
  64. /**
  65. * 当前用户是否选中
  66. */
  67. public String getIsUserCheck() {
  68. return this.isUserCheck;
  69. }
  70. }