TSiteStationInfo.java 5.03 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
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_site_station_info
 *
 * @author zehong
 * @date 2022-01-27
 */
public class TSiteStationInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 场站id */
    private Long siteStationId;

    /** 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站 */
    @Excel(name = "场站类型")
    private String siteStationType;

    /** 场站名称 */
    @Excel(name = "场站名称")
    private String siteStationName;

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

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

    /** 权属单位 */
39
    private String beyondEnterpriseId;
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 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 134 135 136 137 138 139 140 141

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

    /** 经度 */
    @Excel(name = "经度")
    private BigDecimal longitude;

    /** 纬度 */
    @Excel(name = "纬度")
    private BigDecimal latitude;

    @Excel(name = "详细地址")
    private String address;

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

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

    /**图片地址*/
    private String pictureAddress;

    /** 关联设备类型  1设备  2场站*/
    private String relationDeviceType;

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public String getPictureAddress() {
        return pictureAddress;
    }

    public void setPictureAddress(String pictureAddress) {
        this.pictureAddress = pictureAddress;
    }

    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public String getRelationDeviceType() {
        return relationDeviceType;
    }

    public void setRelationDeviceType(String relationDeviceType) {
        this.relationDeviceType = relationDeviceType;
    }

    public void setSiteStationId(Long siteStationId)
    {
        this.siteStationId = siteStationId;
    }

    public Long getSiteStationId()
    {
        return siteStationId;
    }
    public void setSiteStationType(String siteStationType)
    {
        this.siteStationType = siteStationType;
    }

    public String getSiteStationType()
    {
        return siteStationType;
    }
    public void setSiteStationName(String siteStationName)
    {
        this.siteStationName = siteStationName;
    }

    public String getSiteStationName()
    {
        return siteStationName;
    }
    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;
    }
142
    public void setBeyondEnterpriseId(String beyondEnterpriseId)
143 144 145 146
    {
        this.beyondEnterpriseId = beyondEnterpriseId;
    }

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

    public String getBeyondEnterpriseName()
    {
        return beyondEnterpriseName;
    }
    public void setLongitude(BigDecimal longitude)
    {
        this.longitude = longitude;
    }

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

    public BigDecimal getLatitude()
    {
        return latitude;
    }
    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;
    }

    @Override
    public String toString() {
        return "TSiteStationInfo{" +
                "siteStationId=" + siteStationId +
                ", siteStationType='" + siteStationType + '\'' +
                ", siteStationName='" + siteStationName + '\'' +
                ", buildDate='" + buildDate + '\'' +
                ", buildUnit='" + buildUnit + '\'' +
                ", beyondEnterpriseId=" + beyondEnterpriseId +
                ", beyondEnterpriseName='" + beyondEnterpriseName + '\'' +
                ", longitude=" + longitude +
                ", latitude=" + latitude +
                ", isDel='" + isDel + '\'' +
                ", remarks='" + remarks + '\'' +
                ", pictureAddress='" + pictureAddress + '\'' +
                ", relationDeviceType='" + relationDeviceType + '\'' +
                '}';
    }
}