A_M00007.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 角色增加
  9. */
  10. public class A_M00007 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String roleId;//角色ID
  13. /**
  14. *角色ID
  15. */
  16. public void setRoleId(String roleId) {
  17. this.roleId=roleId;
  18. }
  19. /**
  20. *角色ID
  21. */
  22. public String getRoleId() {
  23. return this.roleId;
  24. }
  25. String roleName;//角色名称
  26. /**
  27. *角色名称
  28. */
  29. public void setRoleName(String roleName) {
  30. this.roleName=roleName;
  31. }
  32. /**
  33. *角色名称
  34. */
  35. public String getRoleName() {
  36. return this.roleName;
  37. }
  38. String funcIds;//功能
  39. /**
  40. *功能
  41. */
  42. public void setFuncIds(String funcIds) {
  43. this.funcIds=funcIds;
  44. }
  45. /**
  46. *功能
  47. */
  48. public String getFuncIds() {
  49. return this.funcIds;
  50. }
  51. String menuIds;//菜单列表
  52. /**
  53. *菜单列表
  54. */
  55. public void setMenuIds(String menuIds) {
  56. this.menuIds=menuIds;
  57. }
  58. /**
  59. *菜单列表
  60. */
  61. public String getMenuIds() {
  62. return this.menuIds;
  63. }
  64. String roleDesc;//角色说明
  65. /**
  66. *角色说明
  67. */
  68. public void setRoleDesc(String roleDesc) {
  69. this.roleDesc=roleDesc;
  70. }
  71. /**
  72. *角色说明
  73. */
  74. public String getRoleDesc() {
  75. return this.roleDesc;
  76. }
  77. }