| 1234567891011121314151617181920212223242526272829303132333435363738 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class GetRoleByUserIdParam extends PageParam implements Serializable {
- @ApiModelProperty(value = "用户id,必填", notes = "用户id", required = true)
- private String id;
- private String persType;
- @ApiModelProperty(value = "角色名称(长度:256,可为空:N)")
- private String roleName;
- public String getPersType() {
- return persType;
- }
- public void setPersType(String persType) {
- this.persType = persType;
- }
- public String getRoleName() {
- return roleName;
- }
- public void setRoleName(String roleName) {
- this.roleName = roleName;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- }
|