43a2a15519482f8348b5fb68a4c3241a53284810.svn-base 586 B

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspAll;
  3. import io.swagger.annotations.ApiModelProperty;
  4. public class ObjGroup extends BisInspAll {
  5. @ApiModelProperty("督查类型")
  6. private String ptype;
  7. @ApiModelProperty("督查类型名称")
  8. private String name;
  9. public String getName() {
  10. return name;
  11. }
  12. public void setName(String name) {
  13. this.name = name;
  14. }
  15. public String getPtype() {
  16. return ptype;
  17. }
  18. public void setPtype(String ptype) {
  19. this.ptype = ptype;
  20. }
  21. }