UserMenuTreeDTO.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.simuwang.manage.dto;
  2. import java.util.List;
  3. /**
  4. * @author wangzaijun
  5. * @date 2024/9/13 8:41
  6. * @description 用户菜单树
  7. */
  8. public class UserMenuTreeDTO {
  9. private Integer id;
  10. private Integer pid;
  11. private Integer sort;
  12. private String name;
  13. private String code;
  14. private String path;
  15. private String component;
  16. private String query;
  17. private String menuType;
  18. private String visible;
  19. private String icon;
  20. private List<UserMenuTreeDTO> children;
  21. public Integer getId() {
  22. return id;
  23. }
  24. public void setId(Integer id) {
  25. this.id = id;
  26. }
  27. public Integer getPid() {
  28. return pid;
  29. }
  30. public void setPid(Integer pid) {
  31. this.pid = pid;
  32. }
  33. public Integer getSort() {
  34. return sort;
  35. }
  36. public void setSort(Integer sort) {
  37. this.sort = sort;
  38. }
  39. public String getName() {
  40. return name;
  41. }
  42. public void setName(String name) {
  43. this.name = name;
  44. }
  45. public String getCode() {
  46. return code;
  47. }
  48. public void setCode(String code) {
  49. this.code = code;
  50. }
  51. public String getPath() {
  52. return path;
  53. }
  54. public void setPath(String path) {
  55. this.path = path;
  56. }
  57. public String getComponent() {
  58. return component;
  59. }
  60. public void setComponent(String component) {
  61. this.component = component;
  62. }
  63. public String getQuery() {
  64. return query;
  65. }
  66. public void setQuery(String query) {
  67. this.query = query;
  68. }
  69. public List<UserMenuTreeDTO> getChildren() {
  70. return children;
  71. }
  72. public void setChildren(List<UserMenuTreeDTO> children) {
  73. this.children = children;
  74. }
  75. public String getMenuType() {
  76. return menuType;
  77. }
  78. public void setMenuType(String menuType) {
  79. this.menuType = menuType;
  80. }
  81. public String getVisible() {
  82. return visible;
  83. }
  84. public void setVisible(String visible) {
  85. this.visible = visible;
  86. }
  87. public String getIcon() {
  88. return icon;
  89. }
  90. public void setIcon(String icon) {
  91. this.icon = icon;
  92. }
  93. }