| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacInspYearBatchAreaParam
- *
- * @author lune
- * @date 2019-9-6
- */
- public class TacInspYearBatchAreaParam extends PageParam implements Serializable {
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("修改时间")
- private Date upTm;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- @ApiModelProperty("*主键")
- private String id;
- @ApiModelProperty("*稽察年度批次ID")
- private String yearBatchId;
- @ApiModelProperty("*年度")
- private Long year;
- @ApiModelProperty("*批次")
- private Long batch;
- @ApiModelProperty("*稽察组ID")
- private String groupId;
- @ApiModelProperty("*稽察组组别")
- private Long groupNm;
- @ApiModelProperty("*稽察地点行政区代码")
- private String adCode;
- @ApiModelProperty("*稽察地点行政区名称")
- private String adName;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("稽察人员主键id")
- private String workerbId;
- @ApiModelProperty("多年度多选")
- private String years;
- @ApiModelProperty("多批次多选")
- private String batchs;
- public TacInspYearBatchAreaParam() {
- }
- public String getYears() {
- return years;
- }
- public void setYears(String years) {
- this.years = years;
- }
- public String getBatchs() {
- return batchs;
- }
- public void setBatchs(String batchs) {
- this.batchs = batchs;
- }
- public String getWorkerbId() {
- return workerbId;
- }
- public void setWorkerbId(String workerbId) {
- this.workerbId = workerbId;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- public Date getUpTm() {
- return upTm;
- }
- public void setUpTm(Date upTm) {
- this.upTm = upTm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getYearBatchId() {
- return yearBatchId;
- }
- public void setYearBatchId(String yearBatchId) {
- this.yearBatchId = yearBatchId;
- }
- 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 getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public Long getGroupNm() {
- return groupNm;
- }
- public void setGroupNm(Long groupNm) {
- this.groupNm = groupNm;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- }
|