TGasBottleInfo.java 9.65 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 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 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 277 278 279 280 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 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
package com.zehong.system.domain;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

import java.math.BigDecimal;
import java.util.Date;

/**
 * 气瓶信息对象 t_gas_bottle_info
 *
 * @author zehong
 * @date 2023-08-15
 */
public class TGasBottleInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 气瓶主键 */
    private Long bottleId;

    /** 储配站 */

    private Long stationId;

    @Excel(name = "储配站")
    private String stationName;

    /** 气瓶条码 */
    @Excel(name = "气瓶条码")
    private String bottleCode;

    /** 自有编号 */
    @Excel(name = "自有编号")
    private String myselfNum;

    /** 制造单位 */
    @Excel(name = "制造单位")
    private String produceUnit;

    /** 制造年月 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "制造年月", width = 30, dateFormat = "yyyy-MM-dd")
    private Date produceDate;

    /** 出厂编号 */
    @Excel(name = "出厂编号")
    private String produceCode;

    /** 1.正常 2.逾期未检 3.报废 */
    @Excel(name = "气瓶状态:1.正常 2.逾期未检 3.报废")
    private String bottleStatus;

    /** 末次充装时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "末次充装时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date lastChargeDate;

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

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

    /** 充装介质 */
    @Excel(name = "充装介质")
    private String chargeMedium;

    /** 气瓶规格Kg/MPa */
    @Excel(name = "气瓶规格Kg/MPa")
    private String bottleSpecs;

    /** 公称压力Mpa */
    @Excel(name = "公称压力Mpa")
    private String ratedPresure;

    /** 气瓶容积L */
    @Excel(name = "气瓶容积L")
    private String bottleCapacity;

    /** 壁厚 */
    @Excel(name = "壁厚")
    private String wallThickness;

    /** 皮重 */
    @Excel(name = "皮重")
    private String tare;

    /** 使用登记代码 */
    @Excel(name = "使用登记代码")
    private String useRegisterCode;

    /** 登记日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "登记日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date registerDate;

    /** 末检日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "末检日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date lastCheckDate;

    /** 下检日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "下检日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date nextCheckDate;

    /** 报废日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "报废日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date scrapDate;

    /** 0.在站 1.离站 */
    @Excel(name = "在站/离站: 0.在站 1.离站")
    private String currentStatus;

    /** 0.空瓶 1.满瓶 */
    @Excel(name = "空满状态:0.空瓶 1.满瓶")
    private String emptyType;

    /** 删除状态:0.否 1.是 */
    private String isDel;

    private Date produceBeginTime;

    private Date produceEndTime;

    public void setBottleId(Long bottleId)
    {
        this.bottleId = bottleId;
    }

    public Long getBottleId()
    {
        return bottleId;
    }
    public void setStationId(Long stationId)
    {
        this.stationId = stationId;
    }

    public Long getStationId()
    {
        return stationId;
    }
    public void setBottleCode(String bottleCode)
    {
        this.bottleCode = bottleCode;
    }

    public String getStationName() {
        return stationName;
    }

    public void setStationName(String stationName) {
        this.stationName = stationName;
    }

    public String getBottleCode()
    {
        return bottleCode;
    }
    public void setMyselfNum(String myselfNum)
    {
        this.myselfNum = myselfNum;
    }

    public String getMyselfNum()
    {
        return myselfNum;
    }
    public void setProduceUnit(String produceUnit)
    {
        this.produceUnit = produceUnit;
    }

    public String getProduceUnit()
    {
        return produceUnit;
    }
    public void setProduceDate(Date produceDate)
    {
        this.produceDate = produceDate;
    }

    public Date getProduceDate()
    {
        return produceDate;
    }
    public void setProduceCode(String produceCode)
    {
        this.produceCode = produceCode;
    }

    public String getProduceCode()
    {
        return produceCode;
    }
    public void setBottleStatus(String bottleStatus)
    {
        this.bottleStatus = bottleStatus;
    }

    public String getBottleStatus()
    {
        return bottleStatus;
    }
    public void setLastChargeDate(Date lastChargeDate)
    {
        this.lastChargeDate = lastChargeDate;
    }

    public Date getLastChargeDate()
    {
        return lastChargeDate;
    }
    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 setChargeMedium(String chargeMedium)
    {
        this.chargeMedium = chargeMedium;
    }

    public String getChargeMedium()
    {
        return chargeMedium;
    }
    public void setBottleSpecs(String bottleSpecs)
    {
        this.bottleSpecs = bottleSpecs;
    }

    public String getBottleSpecs()
    {
        return bottleSpecs;
    }
    public void setRatedPresure(String ratedPresure)
    {
        this.ratedPresure = ratedPresure;
    }

    public String getRatedPresure()
    {
        return ratedPresure;
    }
    public void setBottleCapacity(String bottleCapacity)
    {
        this.bottleCapacity = bottleCapacity;
    }

    public String getBottleCapacity()
    {
        return bottleCapacity;
    }
    public void setWallThickness(String wallThickness)
    {
        this.wallThickness = wallThickness;
    }

    public String getWallThickness()
    {
        return wallThickness;
    }
    public void setTare(String tare)
    {
        this.tare = tare;
    }

    public String getTare()
    {
        return tare;
    }
    public void setUseRegisterCode(String useRegisterCode)
    {
        this.useRegisterCode = useRegisterCode;
    }

    public String getUseRegisterCode()
    {
        return useRegisterCode;
    }
    public void setRegisterDate(Date registerDate)
    {
        this.registerDate = registerDate;
    }

    public Date getRegisterDate()
    {
        return registerDate;
    }
    public void setLastCheckDate(Date lastCheckDate)
    {
        this.lastCheckDate = lastCheckDate;
    }

    public Date getLastCheckDate()
    {
        return lastCheckDate;
    }
    public void setNextCheckDate(Date nextCheckDate)
    {
        this.nextCheckDate = nextCheckDate;
    }

    public Date getNextCheckDate()
    {
        return nextCheckDate;
    }
    public void setScrapDate(Date scrapDate)
    {
        this.scrapDate = scrapDate;
    }

    public Date getScrapDate()
    {
        return scrapDate;
    }
    public void setCurrentStatus(String currentStatus)
    {
        this.currentStatus = currentStatus;
    }

    public String getCurrentStatus()
    {
        return currentStatus;
    }
    public void setEmptyType(String emptyType)
    {
        this.emptyType = emptyType;
    }

    public String getEmptyType()
    {
        return emptyType;
    }
    public void setIsDel(String isDel)
    {
        this.isDel = isDel;
    }

    public String getIsDel()
    {
        return isDel;
    }

    public Date getProduceBeginTime() {
        return produceBeginTime;
    }

    public void setProduceBeginTime(Date produceBeginTime) {
        this.produceBeginTime = produceBeginTime;
    }

    public Date getProduceEndTime() {
        return produceEndTime;
    }

    public void setProduceEndTime(Date produceEndTime) {
        this.produceEndTime = produceEndTime;
    }

    @Override
    public String toString() {
        return "TGasBottleInfo{" +
                "bottleId=" + bottleId +
                ", stationId=" + stationId +
                ", stationName='" + stationName + '\'' +
                ", bottleCode='" + bottleCode + '\'' +
                ", myselfNum='" + myselfNum + '\'' +
                ", produceUnit='" + produceUnit + '\'' +
                ", produceDate=" + produceDate +
                ", produceCode='" + produceCode + '\'' +
                ", bottleStatus='" + bottleStatus + '\'' +
                ", lastChargeDate=" + lastChargeDate +
                ", longitude=" + longitude +
                ", latitude=" + latitude +
                ", chargeMedium='" + chargeMedium + '\'' +
                ", bottleSpecs='" + bottleSpecs + '\'' +
                ", ratedPresure='" + ratedPresure + '\'' +
                ", bottleCapacity='" + bottleCapacity + '\'' +
                ", wallThickness='" + wallThickness + '\'' +
                ", tare='" + tare + '\'' +
                ", useRegisterCode='" + useRegisterCode + '\'' +
                ", registerDate=" + registerDate +
                ", lastCheckDate=" + lastCheckDate +
                ", nextCheckDate=" + nextCheckDate +
                ", scrapDate=" + scrapDate +
                ", currentStatus='" + currentStatus + '\'' +
                ", emptyType='" + emptyType + '\'' +
                ", isDel='" + isDel + '\'' +
                ", produceBeginTime=" + produceBeginTime +
                ", produceEndTime=" + produceEndTime +
                '}';
    }
}