b4f7b0da686fa96dca525d5762b3e4794b8a03f9.svn-base 978 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package cn.com.goldenwater.dcproj.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class KeyRegParam {
  4. @ApiModelProperty("单位性质编码")
  5. private String orgType;
  6. @ApiModelProperty("工程类型")
  7. private String proType;
  8. @ApiModelProperty("单位性质,中文")
  9. private String reviOrg;
  10. @ApiModelProperty("督查类型")
  11. private String ptype;
  12. public String getPtype() {
  13. return ptype;
  14. }
  15. public void setPtype(String ptype) {
  16. this.ptype = ptype;
  17. }
  18. public String getReviOrg() {
  19. return reviOrg;
  20. }
  21. public void setReviOrg(String reviOrg) {
  22. this.reviOrg = reviOrg;
  23. }
  24. public String getOrgType() {
  25. return orgType;
  26. }
  27. public void setOrgType(String orgType) {
  28. this.orgType = orgType;
  29. }
  30. public String getProType() {
  31. return proType;
  32. }
  33. public void setProType(String proType) {
  34. this.proType = proType;
  35. }
  36. }