1c4c88df2fbac8e02d28846ad92519874fb73f9d.svn-base 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import cn.com.goldenwater.core.model.BaseBean;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. /**
  7. * entity:AttInspTypeDuty
  8. *
  9. * @author lhc
  10. * @date 2021-7-14
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class AttInspTypeDuty extends BaseBean implements Serializable {
  14. /** 责任处室 */
  15. @ApiModelProperty(value="责任处室",name="dutyDep")
  16. private String dutyDep;
  17. /** 督查类别 */
  18. @ApiModelProperty(value="督查类别",name="ptype")
  19. private String ptype;
  20. /** 机构ID */
  21. @ApiModelProperty(value="机构ID",name="orgId")
  22. private String orgId;
  23. public String getDutyDep() {
  24. return dutyDep;
  25. }
  26. public void setDutyDep(String dutyDep) {
  27. this.dutyDep = dutyDep;
  28. }
  29. public String getPtype() {
  30. return ptype;
  31. }
  32. public void setPtype(String ptype) {
  33. this.ptype = ptype;
  34. }
  35. public String getOrgId() {
  36. return orgId;
  37. }
  38. public void setOrgId(String orgId) {
  39. this.orgId = orgId;
  40. }
  41. @Override
  42. public String toString() {
  43. return "AttInspTypeDuty [" + "dutyDep=" + dutyDep + ", ptype=" + ptype + ", orgId=" + orgId + "]";
  44. }
  45. }