4b81787172ebbd5771bc86efdd98ee4b3373afd5.svn-base 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * Created by jinshui on 2019/10/30.
  8. */
  9. public class TacInspYearBatchAreaDto implements Serializable {
  10. @ApiModelProperty("区域列表")
  11. private List<TacInspYearBatchArea> areaList;
  12. @ApiModelProperty("稽察年度批次ID")
  13. private String yearBatchId;
  14. @ApiModelProperty("年度")
  15. private Long year;
  16. @ApiModelProperty("批次")
  17. private Long batch;
  18. public Long getYear() {
  19. return year;
  20. }
  21. public void setYear(Long year) {
  22. this.year = year;
  23. }
  24. public Long getBatch() {
  25. return batch;
  26. }
  27. public void setBatch(Long batch) {
  28. this.batch = batch;
  29. }
  30. public String getYearBatchId() {
  31. return yearBatchId;
  32. }
  33. public void setYearBatchId(String yearBatchId) {
  34. this.yearBatchId = yearBatchId;
  35. }
  36. public List<TacInspYearBatchArea> getAreaList() {
  37. return areaList;
  38. }
  39. public void setAreaList(List<TacInspYearBatchArea> areaList) {
  40. this.areaList = areaList;
  41. }
  42. }