THiddenDangerStandingBook.java 6.24 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
package com.zehong.system.domain;

import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

/**
 * 隐患整治台账对象 t_hidden_danger_standing_book
 *
 * @author zehong
 * @date 2022-02-09
 */
public class THiddenDangerStandingBook extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 隐患id */
    private Long hiddenId;

    /** 隐患名称 */
    @Excel(name = "隐患名称")
    private String hiddenTitle;

    /** 隐患内容 */
    @Excel(name = "隐患内容")
    private String hiddenContent;

    /** 隐患位置 */
    @Excel(name = "隐患位置")
    private String hiddenLocation;

    /** 经度 */
    private BigDecimal longitude;

    /** 纬度 */
    private BigDecimal latitude;

    /** 隐患类型 */
    @Excel(name = "隐患类型")
    private String hiddenType;

    /** 隐患发现人员 */
    @Excel(name = "隐患发现人员")
    private String hiddenFindPeople;

    /** 发现时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "发现时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date hiddenFindDate;

    /** 处理方案 */
    @Excel(name = "处理方案")
    private String dealPlan;

    /** 方案路径 */
    private String dealPlanUrl;

    /** 整治情况 */
    @Excel(name = "整治情况")
    private String remediation;

    /** 是否删除(0正常,1删除) */
    @Excel(name = "是否删除(0正常,1删除)")
    private String isDel;

    /** 备注 */
    @Excel(name = "备注")
    private String remarks;


    /** 权属单位 */
76
    private String beyondEnterpriseId;
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

    private String source;

    private String township;

    private int hiddenTroubleLevel;

    private String hiddenTroubleType;

    public String getSource() {
        return source;
    }

    public void setSource(String source) {
        this.source = source;
    }

    public String getTownship() {
        return township;
    }

    public void setTownship(String township) {
        this.township = township;
    }

    public int getHiddenTroubleLevel() {
        return hiddenTroubleLevel;
    }

    public void setHiddenTroubleLevel(int hiddenTroubleLevel) {
        this.hiddenTroubleLevel = hiddenTroubleLevel;
    }

    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

114
    public String getBeyondEnterpriseId() {
115 116 117
        return beyondEnterpriseId;
    }

118
    public void setBeyondEnterpriseId(String beyondEnterpriseId) {
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
        this.beyondEnterpriseId = beyondEnterpriseId;
    }

    public void setHiddenId(Long hiddenId)
    {
        this.hiddenId = hiddenId;
    }

    public Long getHiddenId()
    {
        return hiddenId;
    }
    public void setHiddenTitle(String hiddenTitle)
    {
        this.hiddenTitle = hiddenTitle;
    }

    public String getHiddenTitle()
    {
        return hiddenTitle;
    }
    public void setHiddenContent(String hiddenContent)
    {
        this.hiddenContent = hiddenContent;
    }

    public String getHiddenContent()
    {
        return hiddenContent;
    }
    public void setHiddenLocation(String hiddenLocation)
    {
        this.hiddenLocation = hiddenLocation;
    }

    public String getHiddenLocation()
    {
        return hiddenLocation;
    }

    public BigDecimal getLongitude() {
        return longitude;
    }

    public void setLongitude(BigDecimal longitude) {
        this.longitude = longitude;
    }

    public BigDecimal getLatitude() {
        return latitude;
    }

    public void setLatitude(BigDecimal latitude) {
        this.latitude = latitude;
    }

    public void setHiddenType(String hiddenType)
    {
        this.hiddenType = hiddenType;
    }

    public String getHiddenType()
    {
        return hiddenType;
    }
    public void setHiddenFindPeople(String hiddenFindPeople)
    {
        this.hiddenFindPeople = hiddenFindPeople;
    }

    public String getHiddenFindPeople()
    {
        return hiddenFindPeople;
    }
    public void setHiddenFindDate(Date hiddenFindDate)
    {
        this.hiddenFindDate = hiddenFindDate;
    }

    public Date getHiddenFindDate()
    {
        return hiddenFindDate;
    }
    public void setDealPlan(String dealPlan)
    {
        this.dealPlan = dealPlan;
    }

    public String getDealPlan()
    {
        return dealPlan;
    }

    public String getDealPlanUrl() {
        return dealPlanUrl;
    }

    public void setDealPlanUrl(String dealPlanUrl) {
        this.dealPlanUrl = dealPlanUrl;
    }

    public void setRemediation(String remediation)
    {
        this.remediation = remediation;
    }

    public String getRemediation()
    {
        return remediation;
    }
    public void setIsDel(String isDel)
    {
        this.isDel = isDel;
    }

    public String getIsDel()
    {
        return isDel;
    }
    public void setRemarks(String remarks)
    {
        this.remarks = remarks;
    }

    public String getRemarks()
    {
        return remarks;
    }

    public String getHiddenTroubleType() {
        return hiddenTroubleType;
    }

    public void setHiddenTroubleType(String hiddenTroubleType) {
        this.hiddenTroubleType = hiddenTroubleType;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("hiddenId", getHiddenId())
            .append("hiddenTitle", getHiddenTitle())
            .append("hiddenContent", getHiddenContent())
            .append("hiddenLocation", getHiddenLocation())
            .append("hiddenType", getHiddenType())
            .append("hiddenFindPeople", getHiddenFindPeople())
            .append("hiddenFindDate", getHiddenFindDate())
            .append("dealPlan", getDealPlan())
            .append("remediation", getRemediation())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("isDel", getIsDel())
            .append("remarks", getRemarks())
            .toString();
    }
}