| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class GetMenuByUserIdParam extends PageParam implements Serializable {
- @ApiModelProperty(value = "用户id,必填", notes = "用户id", required = true)
- private String userId;
- @ApiModelProperty(value = "菜单级别(<=,不传则获取全部菜单)")
- private String sortlevel;
- // @ApiModelProperty(value = "(此参数无效)是否获取所有菜单,1或空获取所有菜单(当前系统菜单列表),0只获取当前用户拥有的菜单")
- // private String getAll;
- @ApiModelProperty(value = "菜单名称(长度:256,可为空:N)", notes = "菜单名称")
- private String menuName;
- @ApiModelProperty("0,其他,1代表督查,2代表稽察。无值标识所有菜单")
- private String ownApp;
- public String getOwnApp() {
- return ownApp;
- }
- public void setOwnApp(String ownApp) {
- this.ownApp = ownApp;
- }
- // public String getGetAll() {
- // return getAll;
- // }
- //
- // public void setGetAll(String getAll) {
- // this.getAll = getAll;
- // }
- public String getMenuName() {
- return menuName;
- }
- public void setMenuName(String menuName) {
- this.menuName = menuName;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public String getSortlevel() {
- return sortlevel;
- }
- public void setSortlevel(String sortlevel) {
- this.sortlevel = sortlevel;
- }
- }
|