| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspYearInfoParam
- * 年度计划批次组数据信息
- * BIS_INSP_YEAR_INFO
- * @author lhc
- * @date 2023年4月6日
- */
- public class BisInspYearInfoParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 所属机构ID
- @ApiParam(name = "所属机构ID")
- @ApiModelProperty(value = "所属机构ID", name = "orgId")
- private String orgId;
- // 所属行政区划编码
- @ApiParam(name = "所属行政区划编码")
- @ApiModelProperty(value = "所属行政区划编码", name = "adCode")
- private String adCode;
- // 年度
- @ApiParam(name = "年度")
- @ApiModelProperty(value = "年度", name = "year")
- private Long year;
- // 派出批次数
- @ApiParam(name = "派出批次数")
- @ApiModelProperty(value = "派出批次数", name = "yearBath")
- private Long yearBath;
- // 排出督查组数
- @ApiParam(name = "排出督查组数")
- @ApiModelProperty(value = "排出督查组数", name = "yearGroup")
- private Long yearGroup;
- // 操作(记录)人ID
- @ApiParam(name = "操作(记录)人ID")
- @ApiModelProperty(value = "操作(记录)人ID", name = "persId")
- private String persId;
- // 查看(创建)时间
- @ApiParam(name = "查看(创建)时间")
- @ApiModelProperty(value = "查看(创建)时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 备注
- @ApiParam(name = "备注")
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 数据状态
- @ApiParam(name = "数据状态")
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- public BisInspYearInfoParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public Long getYearBath() {
- return yearBath;
- }
- public void setYearBath(Long yearBath) {
- this.yearBath = yearBath;
- }
- public Long getYearGroup() {
- return yearGroup;
- }
- public void setYearGroup(Long yearGroup) {
- this.yearGroup = yearGroup;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- 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 getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|