f354d360477282e7ff882764938a6bf5271a07c7.svn-base 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. * BisInspOrgParam
  9. *
  10. * @author lhc
  11. * @date 2019-6-4
  12. */
  13. public class BisInspOrgParam extends PageParam implements Serializable {
  14. private String norgId;
  15. private String norgPid;
  16. @ApiModelProperty(value = "机构父节点id",required = true)
  17. private String orgPid;
  18. @ApiModelProperty(value = "机构名称",required = true)
  19. private String orgNm;
  20. @ApiModelProperty(value = "机构编码",required = true)
  21. private String rlcode;
  22. @ApiModelProperty("用户id")
  23. private String persId;
  24. private String orgType;
  25. public BisInspOrgParam() {
  26. }
  27. public String getOrgType() {
  28. return orgType;
  29. }
  30. public void setOrgType(String orgType) {
  31. this.orgType = orgType;
  32. }
  33. public String getPersId() {
  34. return persId;
  35. }
  36. public void setPersId(String persId) {
  37. this.persId = persId;
  38. }
  39. public String getNorgId() {
  40. return norgId;
  41. }
  42. public void setNorgId(String norgId) {
  43. this.norgId = norgId;
  44. }
  45. public String getNorgPid() {
  46. return norgPid;
  47. }
  48. public void setNorgPid(String norgPid) {
  49. this.norgPid = norgPid;
  50. }
  51. public String getOrgPid() {
  52. return orgPid;
  53. }
  54. public void setOrgPid(String orgPid) {
  55. this.orgPid = orgPid;
  56. }
  57. public String getOrgNm() {
  58. return orgNm;
  59. }
  60. public void setOrgNm(String orgNm) {
  61. this.orgNm = orgNm;
  62. }
  63. public String getRlcode() {
  64. return rlcode;
  65. }
  66. public void setRlcode(String rlcode) {
  67. this.rlcode = rlcode;
  68. }
  69. }