| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- 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;
- /**
- * BisInspDvdwkParam
- *
- * @author lhc
- * @date 2019-4-30
- */
- public class BisInspDvdwkParam extends PageParam implements Serializable {
- // 主键
- @ApiParam(name = "主键")
- @ApiModelProperty(value = "主键", name = "dvdwkId")
- private String dvdwkId;
- private String schmId;
- private String guid;
- // 机构id
- @ApiParam(name = "机构id")
- @ApiModelProperty(value = "机构id", name = "orgDp")
- private String orgDp;
- // 督查类型(1:小水库、2:农饮、3:水毁)
- @ApiParam(name = "督查类型(1:小水库、2:农饮、3:水毁)")
- @ApiModelProperty(value = "督查类型(1:小水库、2:农饮、3:水毁)", name = "dtype")
- private String dtype;
- // 内容
- @ApiParam(name = "内容")
- @ApiModelProperty(value = "内容", name = "content")
- private String content;
- // 录入时间
- @ApiParam(name = "录入时间")
- @ApiModelProperty(value = "录入时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 督查对象总数
- @ApiParam(name = "督查对象总数")
- @ApiModelProperty(value = "督查对象总数", name = "inspNum")
- private Double inspNum;
- // 行政区编码
- @ApiParam(name = "行政区编码")
- @ApiModelProperty(value = "行政区编码", name = "adCode")
- private String adCode;
- // 行政区名称
- @ApiParam(name = "行政区名称")
- @ApiModelProperty(value = "行政区名称", name = "adName")
- private String adName;
- // 机构名称
- @ApiParam(name = "机构名称")
- @ApiModelProperty(value = "机构名称", name = "orgName")
- private String orgName;
- // 基础数据总数
- @ApiParam(name = "基础数据总数")
- @ApiModelProperty(value = "基础数据总数", name = "inspCount")
- private Double inspCount;
- // 督查对象占比
- @ApiParam(name = "督查对象占比")
- @ApiModelProperty(value = "督查对象占比", name = "inspScale")
- private Double inspScale;
- public BisInspDvdwkParam() {
- }
- public String getDvdwkId() {
- return dvdwkId;
- }
- public void setDvdwkId(String dvdwkId) {
- this.dvdwkId = dvdwkId;
- }
- public String getSchmId() {
- return schmId;
- }
- public void setSchmId(String schmId) {
- this.schmId = schmId;
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getOrgDp() {
- return orgDp;
- }
- public void setOrgDp(String orgDp) {
- this.orgDp = orgDp;
- }
- public String getDtype() {
- return dtype;
- }
- public void setDtype(String dtype) {
- this.dtype = dtype;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- 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 Double getInspNum() {
- return inspNum;
- }
- public void setInspNum(Double inspNum) {
- this.inspNum = inspNum;
- }
- 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 getOrgName() {
- return orgName;
- }
- public void setOrgName(String orgName) {
- this.orgName = orgName;
- }
- public Double getInspCount() {
- return inspCount;
- }
- public void setInspCount(Double inspCount) {
- this.inspCount = inspCount;
- }
- public Double getInspScale() {
- return inspScale;
- }
- public void setInspScale(Double inspScale) {
- this.inspScale = inspScale;
- }
- }
|