| 12345678910111213141516171819202122232425262728293031 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class GetPrivByUserIdParam extends BaseBean implements Serializable {
- @ApiModelProperty(value = "用户id,必填",notes = "用户id",required = true)
- private String userId;
- @ApiModelProperty("1代表督查,2代表稽察。无值标识所有菜单")
- private String ownApp;
- public String getOwnApp() {
- return ownApp;
- }
- public void setOwnApp(String ownApp) {
- this.ownApp = ownApp;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- }
|