TPipeInfo.java 8.58 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
package com.zehong.system.domain;

import java.math.BigDecimal;
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_pipe_info
 *
 * @author zehong
 * @date 2022-02-09
 */
public class TPipeInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 管道id */
    private Long pipeId;

    /** 管道长度 */
    @Excel(name = "管道长度(米)")
    private BigDecimal pipeLength;

    /** 管径 */
    @Excel(name = "管径(厘米)")
    private String pipeDiameter;

    /** 压力 */
    @Excel(name = "压力")
    private String pipePressure;

    /** 材质 */
    @Excel(name = "材质")
    private String pipeMaterial;

    /** 管道地址 */
    private String pipeAddr;

    /** 埋深 */
    @Excel(name = "埋深")
    private String buriedDepth;

    /** 走向 */
    @Excel(name = "走向")
    private String pipeTrend;

    /** 建设年代 */
    @Excel(name = "建设年代")
    private String buildDate;

    /** 建设单位 */
    @Excel(name = "建设单位")
    private String buildUnit;

    /**人员类型*/
    private String peopleOccupation;

    /** 权属单位 */
61
    private String beyondEnterpriseId;
62 63 64 65 66 67 68 69 70 71 72 73

    /** 权属单位名称 */
    @Excel(name = "权属单位名称")
    private String beyondEnterpriseName;

    /** 坐标 */
    @Excel(name = "坐标")
    private String coordinates;

    /** 是否删除(0正常,1删除) */
    private String isDel;

74 75 76 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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
    /**
     * 管道名称
     */
    private String pipeName;

    /**
     * 详细地址
     */
    private String detaildAddress;

    /**
     * 行业主管部门
     */
    private String indRegAuth;

    /**
     * 行业主管部门负责人
     */
    private String indRegAuthPer;

    /**
     * 属地负责人电话
     */
    private String indRegAuthPerCon;

    /**
     * 重点部位燃气具使用情况
     */
    private String keyAreasGasUsage;

    /**
     * 所属燃气公司
     */
    private String affGasCom;

    /**
     * 所属燃气公司安检人员
     */
    private String affGasComSecPer;

    /**
     * 燃气公司安检人员电话
     */
    private String affGasComSecPerCon;

    /**
     * 安检时间
     */
    private String secCheckTime;

    /**
     * 单位燃气用户负责人
     */
    private String unitGasUserRes;

    /**
     * 单位燃气用户负责人电话
     */
    private String unitGasUserResCon;

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
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;

    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public String getPeopleOccupation() {
        return peopleOccupation;
    }

    public void setPeopleOccupation(String peopleOccupation) {
        this.peopleOccupation = peopleOccupation;
    }

    public void setPipeId(Long pipeId)
    {
        this.pipeId = pipeId;
    }

    public Long getPipeId()
    {
        return pipeId;
    }
    public void setPipeLength(BigDecimal pipeLength)
    {
        this.pipeLength = pipeLength;
    }

    public BigDecimal getPipeLength() {
        return pipeLength;
    }

    public String getPipeDiameter() {
        return pipeDiameter;
    }

    public void setPipeDiameter(String pipeDiameter) {
        this.pipeDiameter = pipeDiameter;
    }

    public String getPipePressure() {
        return pipePressure;
    }

    public void setPipePressure(String pipePressure) {
        this.pipePressure = pipePressure;
    }

    public String getPipeMaterial() {
        return pipeMaterial;
    }

    public void setPipeMaterial(String pipeMaterial) {
        this.pipeMaterial = pipeMaterial;
    }

    public String getPipeAddr() {
        return pipeAddr;
    }

    public void setPipeAddr(String pipeAddr) {
        this.pipeAddr = pipeAddr;
    }

    public String getBuriedDepth() {
        return buriedDepth;
    }

    public void setBuriedDepth(String buriedDepth) {
        this.buriedDepth = buriedDepth;
    }

    public void setPipeTrend(String pipeTrend)
    {
        this.pipeTrend = pipeTrend;
    }

    public String getPipeTrend()
    {
        return pipeTrend;
    }
    public void setBuildDate(String buildDate)
    {
        this.buildDate = buildDate;
    }

    public String getBuildDate()
    {
        return buildDate;
    }
    public void setBuildUnit(String buildUnit)
    {
        this.buildUnit = buildUnit;
    }

    public String getBuildUnit()
    {
        return buildUnit;
    }
235
    public void setBeyondEnterpriseId(String beyondEnterpriseId)
236 237 238 239
    {
        this.beyondEnterpriseId = beyondEnterpriseId;
    }

240
    public String getBeyondEnterpriseId()
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 277 278 279 280
    {
        return beyondEnterpriseId;
    }
    public void setBeyondEnterpriseName(String beyondEnterpriseName)
    {
        this.beyondEnterpriseName = beyondEnterpriseName;
    }

    public String getBeyondEnterpriseName()
    {
        return beyondEnterpriseName;
    }
    public void setCoordinates(String coordinates)
    {
        this.coordinates = coordinates;
    }

    public String getCoordinates()
    {
        return coordinates;
    }
    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;
    }

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
    public String getPipeName() {
        return pipeName;
    }

    public void setPipeName(String pipeName) {
        this.pipeName = pipeName;
    }

    public String getDetaildAddress() {
        return detaildAddress;
    }

    public void setDetaildAddress(String detaildAddress) {
        this.detaildAddress = detaildAddress;
    }

    public String getIndRegAuth() {
        return indRegAuth;
    }

    public void setIndRegAuth(String indRegAuth) {
        this.indRegAuth = indRegAuth;
    }

    public String getIndRegAuthPer() {
        return indRegAuthPer;
    }

    public void setIndRegAuthPer(String indRegAuthPer) {
        this.indRegAuthPer = indRegAuthPer;
    }

    public String getIndRegAuthPerCon() {
        return indRegAuthPerCon;
    }

    public void setIndRegAuthPerCon(String indRegAuthPerCon) {
        this.indRegAuthPerCon = indRegAuthPerCon;
    }

    public String getKeyAreasGasUsage() {
        return keyAreasGasUsage;
    }

    public void setKeyAreasGasUsage(String keyAreasGasUsage) {
        this.keyAreasGasUsage = keyAreasGasUsage;
    }

    public String getAffGasCom() {
        return affGasCom;
    }

    public void setAffGasCom(String affGasCom) {
        this.affGasCom = affGasCom;
    }

    public String getAffGasComSecPer() {
        return affGasComSecPer;
    }

    public void setAffGasComSecPer(String affGasComSecPer) {
        this.affGasComSecPer = affGasComSecPer;
    }

    public String getAffGasComSecPerCon() {
        return affGasComSecPerCon;
    }

    public void setAffGasComSecPerCon(String affGasComSecPerCon) {
        this.affGasComSecPerCon = affGasComSecPerCon;
    }

    public String getSecCheckTime() {
        return secCheckTime;
    }

    public void setSecCheckTime(String secCheckTime) {
        this.secCheckTime = secCheckTime;
    }

    public String getUnitGasUserRes() {
        return unitGasUserRes;
    }

    public void setUnitGasUserRes(String unitGasUserRes) {
        this.unitGasUserRes = unitGasUserRes;
    }

    public String getUnitGasUserResCon() {
        return unitGasUserResCon;
    }

    public void setUnitGasUserResCon(String unitGasUserResCon) {
        this.unitGasUserResCon = unitGasUserResCon;
    }

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
    @Override
    public String toString() {
        return "TPipeInfo{" +
                "pipeId=" + pipeId +
                ", pipeLength=" + pipeLength +
                ", pipeDiameter=" + pipeDiameter +
                ", pipePressure=" + pipePressure +
                ", pipeMaterial='" + pipeMaterial + '\'' +
                ", pipeAddr='" + pipeAddr + '\'' +
                ", buriedDepth=" + buriedDepth +
                ", pipeTrend='" + pipeTrend + '\'' +
                ", buildDate='" + buildDate + '\'' +
                ", buildUnit='" + buildUnit + '\'' +
                ", peopleOccupation='" + peopleOccupation + '\'' +
                ", beyondEnterpriseId=" + beyondEnterpriseId +
                ", beyondEnterpriseName='" + beyondEnterpriseName + '\'' +
                ", coordinates='" + coordinates + '\'' +
                ", isDel='" + isDel + '\'' +
                ", remarks='" + remarks + '\'' +
                '}';
    }
}