62994e5a8ed634f3d64d94e3124c0ebdb3d99f70.svn-base 918 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 GetRoleByUserIdParam extends PageParam implements Serializable {
  6. @ApiModelProperty(value = "用户id,必填", notes = "用户id", required = true)
  7. private String id;
  8. private String persType;
  9. @ApiModelProperty(value = "角色名称(长度:256,可为空:N)")
  10. private String roleName;
  11. public String getPersType() {
  12. return persType;
  13. }
  14. public void setPersType(String persType) {
  15. this.persType = persType;
  16. }
  17. public String getRoleName() {
  18. return roleName;
  19. }
  20. public void setRoleName(String roleName) {
  21. this.roleName = roleName;
  22. }
  23. public String getId() {
  24. return id;
  25. }
  26. public void setId(String id) {
  27. this.id = id;
  28. }
  29. }