| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- 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;
- /**
- * BisInspPlanDtlAddvcdParam
- *
- * @author hjp
- * @date 2022-8-9
- */
- public class BisInspPlanDtlAddvcdParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 检查年度计划分解表ID
- @ApiParam(name = "检查年度计划分解表ID")
- @ApiModelProperty(value = "检查年度计划分解表ID", name = "planDtlId")
- private String planDtlId;
- // 所在行政区代码
- @ApiParam(name = "所在行政区代码")
- @ApiModelProperty(value = "所在行政区代码", name = "adCode")
- private String adCode;
- // 所在地行政区
- @ApiParam(name = "所在地行政区")
- @ApiModelProperty(value = "所在地行政区", name = "adName")
- private String adName;
- // 行政区等级 3市 4 县
- @ApiParam(name = "行政区等级 3市 4 县")
- @ApiModelProperty(value = "行政区等级 3市 4 县", name = "adGrad")
- private String adGrad;
- // 创建人
- @ApiParam(name = "创建人")
- @ApiModelProperty(value = "创建人", 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 = "dataStat")
- private String dataStat;
- public BisInspPlanDtlAddvcdParam() {
- }
- public BisInspPlanDtlAddvcdParam(String planDtlId) {
- this.planDtlId = planDtlId;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPlanDtlId() {
- return planDtlId;
- }
- public void setPlanDtlId(String planDtlId) {
- this.planDtlId = planDtlId;
- }
- 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 getAdGrad() {
- return adGrad;
- }
- public void setAdGrad(String adGrad) {
- this.adGrad = adGrad;
- }
- 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 getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|