| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- import cn.com.goldenwater.dcproj.dto.BisInspOtherPblmDto;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import org.springframework.format.annotation.DateTimeFormat;
- /**
- * entity:BisInspOtherPblm
- *
- * @author lune
- * @date 2019-7-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspOtherPblm extends BaseBean implements Serializable {
- @ApiModelProperty("项目名称")
- private String name;
- @ApiModelProperty("检查分类(1:水库;2:水闸;3:人饮;4:水利工程建设;5:水利工程运行)")
- private String type;
- @ApiModelProperty("所属流域机构")
- private String admOrg;
- @ApiModelProperty("所属流域机构名称")
- private String basName;
- @ApiModelProperty("省")
- private String province;
- @ApiModelProperty("市")
- private String city;
- @ApiModelProperty("县")
- private String country;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("督查组ID")
- private String groupId;
- @ApiModelProperty("督查组名称")
- private String groupName;
- @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("主键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("发现时间")
- @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;
- private List<GwComFile> gwComFiles;
- @ApiModelProperty("上报人")
- private String persName;
- public BisInspOtherPblm() {
- }
- public BisInspOtherPblm(BisInspOtherPblmDto dto) {
- this.id = dto.getId();
- this.rgstrId = dto.getRgstrId();
- this.pblmNum = dto.getPblmNum();
- this.pblmIsTrue = dto.getPblmIsTrue();
- this.aUnit = dto.getaUnit();
- this.rectConc = dto.getRectConc();
- this.rectMeas = dto.getRectMeas();
- this.fdTm = dto.getFdTm();
- this.rectLead = dto.getRectLead();
- this.rectMemb = dto.getRectMemb();
- this.rectTm = dto.getRectTm();
- this.note = dto.getNote();
- this.dataStat = dto.getDataStat();
- this.persId = dto.getPersId();
- this.groupId = dto.getGroupId();
- this.inTm = dto.getInTm();
- this.upTm = dto.getUpTm();
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getaUnit() {
- return aUnit;
- }
- public void setaUnit(String aUnit) {
- this.aUnit = aUnit;
- }
- public List<GwComFile> getGwComFiles() {
- return gwComFiles;
- }
- public void setGwComFiles(List<GwComFile> gwComFiles) {
- this.gwComFiles = gwComFiles;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- @Override
- public String getGroupId() {
- return groupId;
- }
- @Override
- 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;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- 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 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;
- }
- @Override
- public String toString() {
- return "BisInspOtherPblm [" + "persId=" + persId + ", groupId=" + groupId + ", inTm=" + inTm + ", upTm=" + upTm + ", id=" + id + ", rgstrId=" + rgstrId + ", aUnit=" + aUnit + ", pblmNum=" + pblmNum + ", pblmIsTrue=" + pblmIsTrue + ", rectConc=" + rectConc + ", rectMeas=" + rectMeas + ", fdTm=" + fdTm + ", rectLead=" + rectLead + ", rectMemb=" + rectMemb + ", rectTm=" + rectTm + ", note=" + note + ", dataStat=" + dataStat + "]";
- }
- 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 getAdmOrg() {
- return admOrg;
- }
- public void setAdmOrg(String admOrg) {
- this.admOrg = admOrg;
- }
- public String getBasName() {
- return basName;
- }
- public void setBasName(String basName) {
- this.basName = basName;
- }
- @Override
- public String getProvince() {
- return province;
- }
- @Override
- 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 getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- }
|