package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.List; /** * Created by jinshui on 2019/10/30. */ public class TacInspYearBatchAreaDto implements Serializable { @ApiModelProperty("区域列表") private List areaList; @ApiModelProperty("稽察年度批次ID") private String yearBatchId; @ApiModelProperty("年度") private Long year; @ApiModelProperty("批次") private Long batch; public Long getYear() { return year; } public void setYear(Long year) { this.year = year; } public Long getBatch() { return batch; } public void setBatch(Long batch) { this.batch = batch; } public String getYearBatchId() { return yearBatchId; } public void setYearBatchId(String yearBatchId) { this.yearBatchId = yearBatchId; } public List getAreaList() { return areaList; } public void setAreaList(List areaList) { this.areaList = areaList; } }