84288eb6da89af9e438e4ad4aa6ca61adde8d613.svn-base 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.util.List;
  4. public class PlanAllGroupDto {
  5. @ApiModelProperty("督查类别")
  6. private String nm;
  7. @ApiModelProperty("类别type")
  8. private String pType;
  9. @ApiModelProperty("计划检查项目数量")
  10. private Long quantity;
  11. @ApiModelProperty("组ID")
  12. private String id;
  13. @ApiModelProperty("对象list")
  14. private List<PersAllObjDto> objectList;
  15. public String getNm() {
  16. return nm;
  17. }
  18. public void setNm(String nm) {
  19. this.nm = nm;
  20. }
  21. public Long getQuantity() {
  22. return quantity;
  23. }
  24. public void setQuantity(Long quantity) {
  25. this.quantity = quantity;
  26. }
  27. public String getId() {
  28. return id;
  29. }
  30. public void setId(String id) {
  31. this.id = id;
  32. }
  33. public List<PersAllObjDto> getObjectList() {
  34. return objectList;
  35. }
  36. public void setObjectList(List<PersAllObjDto> objectList) {
  37. this.objectList = objectList;
  38. }
  39. public String getpType() {
  40. return pType;
  41. }
  42. public void setpType(String pType) {
  43. this.pType = pType;
  44. }
  45. }