740b996f1a9f9de0c3c659ac9f21fc0a5d034af3.svn-base 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:BisInspPersOrg
  8. *
  9. * @author lune
  10. * @date 2019-7-12
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class BisInspPersOrg extends BaseBean implements Serializable {
  14. @ApiModelProperty("用户id")
  15. private String persId;
  16. @ApiModelProperty("机构id")
  17. private String orgId;
  18. @ApiModelProperty("用户身份")
  19. private String userType;
  20. public BisInspPersOrg() {
  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. @Override
  43. public String toString() {
  44. return "BisInspPersOrg [" + "persId=" + persId + ", orgId=" + orgId + "]";
  45. }
  46. }