0061f01a57e4027a0dbeee1d6b2921966833026a.svn-base 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspPersOrgParam
  9. *
  10. * @author lune
  11. * @date 2019-7-12
  12. */
  13. public class BisInspPersOrgParam extends PageParam implements Serializable {
  14. @ApiModelProperty("用户id")
  15. private String persId;
  16. @ApiModelProperty("机构id")
  17. private String orgId;
  18. @ApiModelProperty("用户身份")
  19. private String userType;
  20. public BisInspPersOrgParam() {
  21. }
  22. public String getUserType() {
  23. return userType;
  24. }
  25. public void setUserType(String userType) {
  26. this.userType = userType;
  27. }
  28. public String getPersId() {
  29. return persId;
  30. }
  31. public void setPersId(String persId) {
  32. this.persId = persId;
  33. }
  34. @Override
  35. public String getOrgId() {
  36. return orgId;
  37. }
  38. @Override
  39. public void setOrgId(String orgId) {
  40. this.orgId = orgId;
  41. }
  42. }