| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspOtherPblm;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * Created by jinshui on 2019/7/19.
- */
- public class BisInspOtherPblmDto implements Serializable {
- private String num;
- private String province;
- private String city;
- private String country;
- private String org;
- private String name;
- private String type;
- private String checkLead;
- private String checkMemb;
- private String attach;
- private String adFullName;
- @ApiModelProperty("督查对象组id")
- private String groupObjId;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("督查组ID")
- private String groupId;
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("修改时间")
- private Date upTm;
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("登记表ID")
- private String rgstrId;
- @ApiModelProperty("责任单位")
- private String aUnit;
- @ApiModelProperty("问题数量")
- private String pblmNum;
- @ApiModelProperty("举报调查核实情况(0:不属实;1:部分属实;2:属实)")
- private String pblmIsTrue;
- @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
- private String rectConc;
- @ApiModelProperty("整改详细情况")
- private String rectMeas;
- @ApiModelProperty("发现时间")
- private Date fdTm;
- @ApiModelProperty("复查组长")
- private String rectLead;
- @ApiModelProperty("复查组成员")
- private String rectMemb;
- @ApiModelProperty("复查时间")
- private Date rectTm;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- private String rectTime;
- private String fdTime;
- public String getRectTime() {
- return rectTime;
- }
- public void setRectTime(String rectTime) {
- this.rectTime = rectTime;
- }
- public String getFdTime() {
- return fdTime;
- }
- public void setFdTime(String fdTime) {
- this.fdTime = fdTime;
- }
- public String getGroupObjId() {
- return groupObjId;
- }
- public void setGroupObjId(String groupObjId) {
- this.groupObjId = groupObjId;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- 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 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 getPblmNum() {
- return pblmNum;
- }
- public void setPblmNum(String pblmNum) {
- this.pblmNum = pblmNum;
- }
- public String getPblmIsTrue() {
- return pblmIsTrue;
- }
- public String getAUnit() {
- return this.aUnit;
- }
- public void setAUnit(String aUnit) {
- this.aUnit = aUnit;
- }
- public void setPblmIsTrue(String pblmIsTrue) {
- this.pblmIsTrue = pblmIsTrue;
- }
- 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 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 getNum() {
- return num;
- }
- public void setNum(String num) {
- this.num = num;
- }
- public String getProvince() {
- return province;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- public String getCity() {
- return city;
- }
- public void setCity(String city) {
- this.city = city;
- }
- public String getCountry() {
- return country;
- }
- public void setCountry(String country) {
- this.country = country;
- }
- public String getOrg() {
- return org;
- }
- public void setOrg(String org) {
- this.org = org;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getCheckLead() {
- return checkLead;
- }
- public void setCheckLead(String checkLead) {
- this.checkLead = checkLead;
- }
- public String getCheckMemb() {
- return checkMemb;
- }
- public void setCheckMemb(String checkMemb) {
- this.checkMemb = checkMemb;
- }
- public String getAttach() {
- return attach;
- }
- public void setAttach(String attach) {
- this.attach = attach;
- }
- }
|