| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import org.springframework.format.annotation.DateTimeFormat;
- /**
- * BisInspFscPblmParam
- *
- * @author lune
- * @date 2019-7-19
- */
- public class BisInspFscPblmParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("登记表ID")
- private String rgstrId;
- @ApiModelProperty("责任单位")
- private String aUnit;
- @ApiModelProperty("问题信息")
- private String pblmDesc;
- @ApiModelProperty("问题照片编数量")
- private String pblmImgSum;
- @ApiModelProperty("问题照片编号")
- private String pblmImgNum;
- @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
- private String rectConc;
- @ApiModelProperty("整改详细情况")
- private String rectMeas;
- @ApiModelProperty("整改照片数量")
- private String rectImgSum;
- @ApiModelProperty("整改照片编号")
- private String rectImgNum;
- @ApiModelProperty("发现时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date fdTm;
- @ApiModelProperty("复查组长")
- private String rectLead;
- @ApiModelProperty("复查组成员")
- private String rectMemb;
- @ApiModelProperty("复查时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date rectTm;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("督查组ID")
- private String groupId;
- @ApiModelProperty("创建时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date inTm;
- @ApiModelProperty("修改时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date upTm;
- @ApiModelProperty("督查组ids")
- private String orgIds;
- @ApiModelProperty("行政区编码")
- private String adCode;
- @ApiModelProperty("行政区名称")
- private String adName;
- @ApiModelProperty("筛选时间分类(1:发现时间,2:复查时间)")
- private String tmType;
- @ApiModelProperty("开始时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date startTime;
- @ApiModelProperty("结束时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date endTime;
- @ApiModelProperty("上报人")
- private String persName;
- @ApiModelProperty("项目名称")
- private String name;
- @ApiModelProperty("督查组名称")
- private String groupName;
- private String inIdsSql;
- public String getInIdsSql() {
- return inIdsSql;
- }
- public void setInIdsSql(String inIdsSql) {
- this.inIdsSql = inIdsSql;
- }
- public BisInspFscPblmParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getAUnit() {
- return aUnit;
- }
- public void setAUnit(String aUnit) {
- this.aUnit = aUnit;
- }
- public String getPblmDesc() {
- return pblmDesc;
- }
- public void setPblmDesc(String pblmDesc) {
- this.pblmDesc = pblmDesc;
- }
- public String getPblmImgSum() {
- return pblmImgSum;
- }
- public void setPblmImgSum(String pblmImgSum) {
- this.pblmImgSum = pblmImgSum;
- }
- public String getPblmImgNum() {
- return pblmImgNum;
- }
- public void setPblmImgNum(String pblmImgNum) {
- this.pblmImgNum = pblmImgNum;
- }
- public String getRectConc() {
- return rectConc;
- }
- public void setRectConc(String rectConc) {
- this.rectConc = rectConc;
- }
- public String getRectMeas() {
- return rectMeas;
- }
- public void setRectMeas(String rectMeas) {
- this.rectMeas = rectMeas;
- }
- public String getRectImgSum() {
- return rectImgSum;
- }
- public void setRectImgSum(String rectImgSum) {
- this.rectImgSum = rectImgSum;
- }
- public String getRectImgNum() {
- return rectImgNum;
- }
- public void setRectImgNum(String rectImgNum) {
- this.rectImgNum = rectImgNum;
- }
- public Date getFdTm() {
- return fdTm;
- }
- public void setFdTm(Date fdTm) {
- this.fdTm = fdTm;
- }
- public String getRectLead() {
- return rectLead;
- }
- public void setRectLead(String rectLead) {
- this.rectLead = rectLead;
- }
- public String getRectMemb() {
- return rectMemb;
- }
- public void setRectMemb(String rectMemb) {
- this.rectMemb = rectMemb;
- }
- public Date getRectTm() {
- return rectTm;
- }
- public void setRectTm(Date rectTm) {
- this.rectTm = rectTm;
- }
- 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;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- 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 getOrgIds() {
- return orgIds;
- }
- public void setOrgIds(String orgIds) {
- this.orgIds = orgIds;
- }
- 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 getTmType() {
- return tmType;
- }
- public void setTmType(String tmType) {
- this.tmType = tmType;
- }
- public Date getStartTime() {
- return startTime;
- }
- public void setStartTime(Date startTime) {
- this.startTime = startTime;
- }
- public Date getEndTime() {
- return endTime;
- }
- public void setEndTime(Date endTime) {
- this.endTime = endTime;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- }
|