014fa8c1d405d597c5521db0b318d1cab4b67c81.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * MenuParam
  7. *
  8. * @author lune
  9. * @date 2018-2-13
  10. */
  11. public class UpdateMenuParam implements Serializable {
  12. //font awesome名称或图片URL
  13. @ApiModelProperty(value = "font awesome名称或图片URL(长度:256,可为空:Y)", notes = "font awesome名称或图片URL")
  14. private String icon;
  15. //ID
  16. @ApiModelProperty(value = "ID(长度:64,可为空:N)", notes = "ID", required = true)
  17. private String id;
  18. //菜单名称
  19. @ApiModelProperty(value = "菜单名称(长度:256,可为空:N)", notes = "菜单名称")
  20. private String menuName;
  21. //几级菜单,1,2,3等
  22. @ApiModelProperty(value = "几级菜单,1,2,3等(精度:5,可为空:N,默认值:0 )", notes = "几级菜单,1,2,3等")
  23. private Long sortLevel;
  24. //排序字段
  25. @ApiModelProperty(value = "排序字段(精度:5,可为空:Y)", notes = "排序字段")
  26. private Long sequence;
  27. //父菜单ID
  28. @ApiModelProperty(value = "父菜单ID(长度:64,可为空:Y)", notes = "父菜单ID")
  29. private String parentId;
  30. //超链接
  31. @ApiModelProperty(value = "超链接(长度:1,024,可为空:Y)", notes = "超链接")
  32. private String href;
  33. @ApiModelProperty(value = "对应权限url")
  34. private String privUri;
  35. @ApiModelProperty(value = "对应权限叶子节点标识")
  36. private String flagLeaf;
  37. @ApiModelProperty(value = "对应权限code")
  38. private String code;
  39. @ApiModelProperty(value = "对应权限所属系统")
  40. private String ownerSystem;
  41. @ApiModelProperty("所属应用")
  42. private String ownApp;
  43. public String getOwnApp() {
  44. return ownApp;
  45. }
  46. public void setOwnApp(String ownApp) {
  47. this.ownApp = ownApp;
  48. }
  49. public String getCode() {
  50. return code;
  51. }
  52. public void setCode(String code) {
  53. this.code = code;
  54. }
  55. public String getOwnerSystem() {
  56. return ownerSystem;
  57. }
  58. public void setOwnerSystem(String ownerSystem) {
  59. this.ownerSystem = ownerSystem;
  60. }
  61. public Long getSequence() {
  62. return sequence;
  63. }
  64. public String getPrivUri() {
  65. return privUri;
  66. }
  67. public void setPrivUri(String privUri) {
  68. this.privUri = privUri;
  69. }
  70. public String getFlagLeaf() {
  71. return flagLeaf;
  72. }
  73. public void setFlagLeaf(String flagLeaf) {
  74. this.flagLeaf = flagLeaf;
  75. }
  76. public void setSequence(Long sequence) {
  77. this.sequence = sequence;
  78. }
  79. public String getId() {
  80. return id;
  81. }
  82. public void setId(String id) {
  83. this.id = id;
  84. }
  85. public String getParentId() {
  86. return parentId;
  87. }
  88. public void setParentId(String parentId) {
  89. this.parentId = parentId;
  90. }
  91. public String getMenuName() {
  92. return menuName;
  93. }
  94. public void setMenuName(String menuName) {
  95. this.menuName = menuName;
  96. }
  97. public Long getSortLevel() {
  98. return sortLevel;
  99. }
  100. public void setSortLevel(Long sortLevel) {
  101. this.sortLevel = sortLevel;
  102. }
  103. public String getHref() {
  104. return href;
  105. }
  106. public void setHref(String href) {
  107. this.href = href;
  108. }
  109. public String getIcon() {
  110. return icon;
  111. }
  112. public void setIcon(String icon) {
  113. this.icon = icon;
  114. }
  115. }