74a1d16b66e8f1b1ed9869f812cc04ed1715c468.svn-base 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. public class GetMenuByUserIdParam extends PageParam implements Serializable {
  6. @ApiModelProperty(value = "用户id,必填", notes = "用户id", required = true)
  7. private String userId;
  8. @ApiModelProperty(value = "菜单级别(<=,不传则获取全部菜单)")
  9. private String sortlevel;
  10. // @ApiModelProperty(value = "(此参数无效)是否获取所有菜单,1或空获取所有菜单(当前系统菜单列表),0只获取当前用户拥有的菜单")
  11. // private String getAll;
  12. @ApiModelProperty(value = "菜单名称(长度:256,可为空:N)", notes = "菜单名称")
  13. private String menuName;
  14. @ApiModelProperty("0,其他,1代表督查,2代表稽察。无值标识所有菜单")
  15. private String ownApp;
  16. public String getOwnApp() {
  17. return ownApp;
  18. }
  19. public void setOwnApp(String ownApp) {
  20. this.ownApp = ownApp;
  21. }
  22. // public String getGetAll() {
  23. // return getAll;
  24. // }
  25. //
  26. // public void setGetAll(String getAll) {
  27. // this.getAll = getAll;
  28. // }
  29. public String getMenuName() {
  30. return menuName;
  31. }
  32. public void setMenuName(String menuName) {
  33. this.menuName = menuName;
  34. }
  35. public String getUserId() {
  36. return userId;
  37. }
  38. public void setUserId(String userId) {
  39. this.userId = userId;
  40. }
  41. public String getSortlevel() {
  42. return sortlevel;
  43. }
  44. public void setSortlevel(String sortlevel) {
  45. this.sortlevel = sortlevel;
  46. }
  47. }