05e71eb9c065221c2e78767bf21301224b101b70.svn-base 3.1 KB

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