b4fda7efa0b5425c91e4fca846f3bcd91b7a9775.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package cn.com.goldenwater.dcproj.model;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class InspType {
  4. @ApiModelProperty("督查类型编码")
  5. private String code;
  6. @ApiModelProperty("督查类型名称")
  7. private String name;
  8. @ApiModelProperty("督查人员id")
  9. private String persId;
  10. @ApiModelProperty("督查人员机构id")
  11. private String orgId;
  12. @ApiModelProperty("督查类型")
  13. private String ptype;
  14. public String getPtype() {
  15. return ptype;
  16. }
  17. public void setPtype(String ptype) {
  18. this.ptype = ptype;
  19. }
  20. public String getOrgId() {
  21. return orgId;
  22. }
  23. public void setOrgId(String orgId) {
  24. this.orgId = orgId;
  25. }
  26. public String getPersId() {
  27. return persId;
  28. }
  29. public void setPersId(String persId) {
  30. this.persId = persId;
  31. }
  32. public String getCode() {
  33. return code;
  34. }
  35. public void setCode(String code) {
  36. this.code = code;
  37. }
  38. public String getName() {
  39. return name;
  40. }
  41. public void setName(String name) {
  42. this.name = name;
  43. }
  44. }