TSupBalUsgDay.java 12.7 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
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
package com.zehong.system.domain;

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;

import java.util.Date;

/**
 * 供需平衡-企业每日填报对象 t_sup_bal_usg_day
 * 
 * @author zehong
 * @date 2024-06-25
 */
public class TSupBalUsgDay extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** id */
    private Long fRepUsgDayId;

    /** 企业uuid */
    private String fCompanyInfoId;

    @Excel(name = "企业名称")
    private String enterpriseName;

    /** 天然气城镇居民用量(m3) */
    @Excel(name = "天然气城镇居民用量(万立方米)")
    private Long fUrbanGasUsage;

    /** 天然气农村气代煤居民用量(m3) */
    @Excel(name = "天然气农村气代煤居民用量(万立方米)")
    private Long fRuralReplaceResidentsGasUsage;

    /** 天然气农村非气代煤居民用量(m3) */
    @Excel(name = "天然气农村非气代煤居民用量(万立方米)")
    private Long fNoRuralReplaceResidentsGasUsage;

    /** 天然气工业用量(m3) */
    @Excel(name = "天然气工业用量(万立方米)")
    private Long fIndustrialGasUsage;

    /** 天然气商业用量(m3) */
    @Excel(name = "天然气商业用量(万立方米)")
    private Long fCommercialGasUsage;

    /** 天然气公福用量(m3) */
    @Excel(name = "天然气公福用量(万立方米)")
    private Long fPublicGasUsage;

    /** 天然气城市集中供热锅炉用量(m3) */
    @Excel(name = "天然气城市集中供热锅炉用量(万立方米)")
    private Long fCityHeatingGasUasge;

    /** 天然气汽车用户用量(m3) */
    @Excel(name = "天然气汽车用户用量(万立方米)")
    private Long fCarGasUsage;

    /** 出售给其他燃气企业的天然气量(m3) */
    @Excel(name = "出售给其他燃气企业的天然气量(万立方米)")
    private Long fSoldGasVolume;

    /** 天然气总凄凉(m3) */
    @Excel(name = "天然气总气量万(万立方米)")
    private Long fGasUsage;

    /** 液化石油气城镇居民用量 */
    @Excel(name = "液化石油气城镇居民用量(万立方米)")
    private Long fUrbanLpgUsage;

    /** 液化石油气农村居民用量(吨) */
    @Excel(name = "液化石油气农村居民用量(万立方米)")
    private Long fRuralLpgUsage;

    /** 液化石油气工业用量(吨) */
    @Excel(name = "液化石油气工业用量(吨)")
    private Long fIndustrialLpgUsage;

    /** 液化石油气商业用量(吨) */
    @Excel(name = "液化石油气商业用量(吨)")
    private Long fCommercialLpgUsage;

    /** 液化石油气公福用量(吨) */
    @Excel(name = "液化石油气公福用量(吨)")
    private Long fPublicLpgUsage;

    /** 液化石油气汽车用户用量(吨) */
    @Excel(name = "液化石油气汽车用户用量(吨)")
    private Long fCarLpgUsage;

    /** 出售或调拨给其他燃气企业液化石油气量(吨) */
    @Excel(name = "出售或调拨给其他燃气企业液化石油气量(吨)")
    private Long fSoldLpgVolume;

    /** 液化石油气总量(吨) */
    @Excel(name = "液化石油气总量(吨)")
    private Long fLpgUsage;

    /** 记录时间,日,格式:2023-09-01 */
    private String fReportRecord;

耿迪迪's avatar
耿迪迪 committed
105 106 107
    @Excel(name = "上报状态",readConverterExp = "0=未上报,1=已上报")
    private String fReportStatus;

耿迪迪's avatar
耿迪迪 committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
    /** 上报时间,日,格式:2023-09-01 */
    @Excel(name = "上报时间")
    private String fReportTime;

    /** 创建时间 yyyy-MM-dd hh:mm:ss */
    @Excel(name = "创建时间")
    private String fCreateTime;

    /** 最后修改时间 yyyy-MM-dd hh:mm:ss */
    @Excel(name = "最后修改时间")
    private String fUpdateTime;

    private String beginRepDate;

    private String endRepDate;

耿迪迪's avatar
耿迪迪 committed
124 125 126 127 128 129
    /** 日历日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "日历日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date fCalendarDate;

    /** 政府端上报状态0-未上报,1-已上报,默认0 */
130
    @Excel(name = "上报省厅状态",readConverterExp = " 0=未上报,1=已上报")
耿迪迪's avatar
耿迪迪 committed
131 132 133
    private String fGovUploadStatus;

    /** 政府端上报时间 */
134
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
135
    @Excel(name = "上报省厅时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
耿迪迪's avatar
耿迪迪 committed
136 137 138 139 140 141 142 143
    private Date fGovUploadTime;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date beginCurrentMonthDate;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endCurrentMonthDate;

耿迪迪's avatar
耿迪迪 committed
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
    public void setfRepUsgDayId(Long fRepUsgDayId) 
    {
        this.fRepUsgDayId = fRepUsgDayId;
    }

    public Long getfRepUsgDayId() 
    {
        return fRepUsgDayId;
    }
    public void setfCompanyInfoId(String fCompanyInfoId) 
    {
        this.fCompanyInfoId = fCompanyInfoId;
    }

    public String getfCompanyInfoId() 
    {
        return fCompanyInfoId;
    }

    public String getEnterpriseName() {
        return enterpriseName;
    }

    public void setEnterpriseName(String enterpriseName) {
        this.enterpriseName = enterpriseName;
    }

    public void setfUrbanGasUsage(Long fUrbanGasUsage)
    {
        this.fUrbanGasUsage = fUrbanGasUsage;
    }

    public Long getfUrbanGasUsage() 
    {
        return fUrbanGasUsage;
    }
    public void setfRuralReplaceResidentsGasUsage(Long fRuralReplaceResidentsGasUsage) 
    {
        this.fRuralReplaceResidentsGasUsage = fRuralReplaceResidentsGasUsage;
    }

    public Long getfRuralReplaceResidentsGasUsage() 
    {
        return fRuralReplaceResidentsGasUsage;
    }
    public void setfNoRuralReplaceResidentsGasUsage(Long fNoRuralReplaceResidentsGasUsage) 
    {
        this.fNoRuralReplaceResidentsGasUsage = fNoRuralReplaceResidentsGasUsage;
    }

    public Long getfNoRuralReplaceResidentsGasUsage() 
    {
        return fNoRuralReplaceResidentsGasUsage;
    }
    public void setfIndustrialGasUsage(Long fIndustrialGasUsage) 
    {
        this.fIndustrialGasUsage = fIndustrialGasUsage;
    }

    public Long getfIndustrialGasUsage() 
    {
        return fIndustrialGasUsage;
    }
    public void setfCommercialGasUsage(Long fCommercialGasUsage) 
    {
        this.fCommercialGasUsage = fCommercialGasUsage;
    }

    public Long getfCommercialGasUsage() 
    {
        return fCommercialGasUsage;
    }
    public void setfPublicGasUsage(Long fPublicGasUsage) 
    {
        this.fPublicGasUsage = fPublicGasUsage;
    }

    public Long getfPublicGasUsage() 
    {
        return fPublicGasUsage;
    }
    public void setfCityHeatingGasUasge(Long fCityHeatingGasUasge) 
    {
        this.fCityHeatingGasUasge = fCityHeatingGasUasge;
    }

    public Long getfCityHeatingGasUasge() 
    {
        return fCityHeatingGasUasge;
    }
    public void setfCarGasUsage(Long fCarGasUsage) 
    {
        this.fCarGasUsage = fCarGasUsage;
    }

    public Long getfCarGasUsage() 
    {
        return fCarGasUsage;
    }
    public void setfSoldGasVolume(Long fSoldGasVolume) 
    {
        this.fSoldGasVolume = fSoldGasVolume;
    }

    public Long getfSoldGasVolume() 
    {
        return fSoldGasVolume;
    }
    public void setfGasUsage(Long fGasUsage) 
    {
        this.fGasUsage = fGasUsage;
    }

    public Long getfGasUsage() 
    {
        return fGasUsage;
    }
    public void setfUrbanLpgUsage(Long fUrbanLpgUsage) 
    {
        this.fUrbanLpgUsage = fUrbanLpgUsage;
    }

    public Long getfUrbanLpgUsage() 
    {
        return fUrbanLpgUsage;
    }
    public void setfRuralLpgUsage(Long fRuralLpgUsage) 
    {
        this.fRuralLpgUsage = fRuralLpgUsage;
    }

    public Long getfRuralLpgUsage() 
    {
        return fRuralLpgUsage;
    }
    public void setfIndustrialLpgUsage(Long fIndustrialLpgUsage) 
    {
        this.fIndustrialLpgUsage = fIndustrialLpgUsage;
    }

    public Long getfIndustrialLpgUsage() 
    {
        return fIndustrialLpgUsage;
    }
    public void setfCommercialLpgUsage(Long fCommercialLpgUsage) 
    {
        this.fCommercialLpgUsage = fCommercialLpgUsage;
    }

    public Long getfCommercialLpgUsage() 
    {
        return fCommercialLpgUsage;
    }
    public void setfPublicLpgUsage(Long fPublicLpgUsage) 
    {
        this.fPublicLpgUsage = fPublicLpgUsage;
    }

    public Long getfPublicLpgUsage() 
    {
        return fPublicLpgUsage;
    }
    public void setfCarLpgUsage(Long fCarLpgUsage) 
    {
        this.fCarLpgUsage = fCarLpgUsage;
    }

    public Long getfCarLpgUsage() 
    {
        return fCarLpgUsage;
    }
    public void setfSoldLpgVolume(Long fSoldLpgVolume) 
    {
        this.fSoldLpgVolume = fSoldLpgVolume;
    }

    public Long getfSoldLpgVolume() 
    {
        return fSoldLpgVolume;
    }
    public void setfLpgUsage(Long fLpgUsage) 
    {
        this.fLpgUsage = fLpgUsage;
    }

    public Long getfLpgUsage() 
    {
        return fLpgUsage;
    }
    public void setfReportRecord(String fReportRecord) 
    {
        this.fReportRecord = fReportRecord;
    }

    public String getfReportRecord() 
    {
        return fReportRecord;
    }
    public void setfReportTime(String fReportTime) 
    {
        this.fReportTime = fReportTime;
    }

    public String getfReportTime() 
    {
        return fReportTime;
    }

    public String getfReportStatus() {
        return fReportStatus;
    }

    public void setfReportStatus(String fReportStatus) {
        this.fReportStatus = fReportStatus;
    }

    public void setfCreateTime(String fCreateTime)
    {
        this.fCreateTime = fCreateTime;
    }

    public String getfCreateTime() 
    {
        return fCreateTime;
    }
    public void setfUpdateTime(String fUpdateTime) 
    {
        this.fUpdateTime = fUpdateTime;
    }

    public String getfUpdateTime() 
    {
        return fUpdateTime;
    }

    public String getBeginRepDate() {
        return beginRepDate;
    }

    public void setBeginRepDate(String beginRepDate) {
        this.beginRepDate = beginRepDate;
    }

    public String getEndRepDate() {
        return endRepDate;
    }

    public void setEndRepDate(String endRepDate) {
        this.endRepDate = endRepDate;
    }

耿迪迪's avatar
耿迪迪 committed
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
    public Date getfCalendarDate() {
        return fCalendarDate;
    }

    public void setfCalendarDate(Date fCalendarDate) {
        this.fCalendarDate = fCalendarDate;
    }

    public String getfGovUploadStatus() {
        return fGovUploadStatus;
    }

    public void setfGovUploadStatus(String fGovUploadStatus) {
        this.fGovUploadStatus = fGovUploadStatus;
    }

    public Date getfGovUploadTime() {
        return fGovUploadTime;
    }

    public void setfGovUploadTime(Date fGovUploadTime) {
        this.fGovUploadTime = fGovUploadTime;
    }

    public Date getBeginCurrentMonthDate() {
        return beginCurrentMonthDate;
    }

    public void setBeginCurrentMonthDate(Date beginCurrentMonthDate) {
        this.beginCurrentMonthDate = beginCurrentMonthDate;
    }

    public Date getEndCurrentMonthDate() {
        return endCurrentMonthDate;
    }

    public void setEndCurrentMonthDate(Date endCurrentMonthDate) {
        this.endCurrentMonthDate = endCurrentMonthDate;
    }

耿迪迪's avatar
耿迪迪 committed
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("fRepUsgDayId", getfRepUsgDayId())
            .append("fCompanyInfoId", getfCompanyInfoId())
            .append("fUrbanGasUsage", getfUrbanGasUsage())
            .append("fRuralReplaceResidentsGasUsage", getfRuralReplaceResidentsGasUsage())
            .append("fNoRuralReplaceResidentsGasUsage", getfNoRuralReplaceResidentsGasUsage())
            .append("fIndustrialGasUsage", getfIndustrialGasUsage())
            .append("fCommercialGasUsage", getfCommercialGasUsage())
            .append("fPublicGasUsage", getfPublicGasUsage())
            .append("fCityHeatingGasUasge", getfCityHeatingGasUasge())
            .append("fCarGasUsage", getfCarGasUsage())
            .append("fSoldGasVolume", getfSoldGasVolume())
            .append("fGasUsage", getfGasUsage())
            .append("fUrbanLpgUsage", getfUrbanLpgUsage())
            .append("fRuralLpgUsage", getfRuralLpgUsage())
            .append("fIndustrialLpgUsage", getfIndustrialLpgUsage())
            .append("fCommercialLpgUsage", getfCommercialLpgUsage())
            .append("fPublicLpgUsage", getfPublicLpgUsage())
            .append("fCarLpgUsage", getfCarLpgUsage())
            .append("fSoldLpgVolume", getfSoldLpgVolume())
            .append("fLpgUsage", getfLpgUsage())
            .append("fReportRecord", getfReportRecord())
            .append("fReportTime", getfReportTime())
            .append("fCreateTime", getfCreateTime())
            .append("fUpdateTime", getfUpdateTime())
            .toString();
    }
}