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

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_sup_bal_gas_sup
 * 
 * @author zehong
 * @date 2024-06-15
 */
public class TSupBalGasSup extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** id */
    private Long fGasSupId;

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

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

    /** 计划量 */
    @Excel(name = "计划量")
    private Long fPlanQuan;

    /** 批复量 */
    @Excel(name = "批复量")
    private Long fApprQuan;

    /** 供气量 */
    @Excel(name = "供气量")
    private Long fSupGasVol;

    /** 存储量 */
    @Excel(name = "存储量")
    private Long fStorageVol;

    /** 监管气量日期 */
46
    @Excel(name = "监管气量日期", dateFormat = "yyyy-MM-dd HH:mm:ss")
47 48 49 50
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date fSupDate;

    /** 上报状态 0-未上报,1-已上报 */
51
    @Excel(name = "上报状态",readConverterExp = "0=未上报,1=已上报")
52 53 54
    private String fRepStatus;

    /** 上报日期 */
耿迪迪's avatar
耿迪迪 committed
55 56
    @Excel(name = "上报日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
57 58
    private Date fRepDate;

59 60 61 62 63

    /** 日历日期*/
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date calendarDate;

64 65 66 67 68 69 70 71 72 73 74 75 76
    /** 是否删除(0正常,1删除) */
    private String isDel;

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

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

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

耿迪迪's avatar
耿迪迪 committed
77 78 79 80 81 82 83
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date beginCurrentMonthDate;

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

    /** 政府端上报状态 */
84
    @Excel(name = "上报省厅状态",readConverterExp = "0=未上报,1=已上报")
耿迪迪's avatar
耿迪迪 committed
85 86 87 88
    private String fGovUploadStatus;

    /** 政府端上报时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
89
    @Excel(name = "上报省厅日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
耿迪迪's avatar
耿迪迪 committed
90 91
    private Date fGovUploadTime;

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
    public void setfGasSupId(Long fGasSupId) 
    {
        this.fGasSupId = fGasSupId;
    }

    public Long getfGasSupId() 
    {
        return fGasSupId;
    }
    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 setfPlanQuan(Long fPlanQuan)
    {
        this.fPlanQuan = fPlanQuan;
    }

    public Long getfPlanQuan() 
    {
        return fPlanQuan;
    }
    public void setfApprQuan(Long fApprQuan) 
    {
        this.fApprQuan = fApprQuan;
    }

    public Long getfApprQuan() 
    {
        return fApprQuan;
    }
    public void setfSupGasVol(Long fSupGasVol) 
    {
        this.fSupGasVol = fSupGasVol;
    }

    public Long getfSupGasVol() 
    {
        return fSupGasVol;
    }
    public void setfStorageVol(Long fStorageVol) 
    {
        this.fStorageVol = fStorageVol;
    }

    public Long getfStorageVol() 
    {
        return fStorageVol;
    }
    public void setfSupDate(Date fSupDate)
    {
        this.fSupDate = fSupDate;
    }

    public Date getfSupDate()
    {
        return fSupDate;
    }
    public void setfRepStatus(String fRepStatus) 
    {
        this.fRepStatus = fRepStatus;
    }

    public String getfRepStatus() 
    {
        return fRepStatus;
    }
    public void setfRepDate(Date fRepDate) 
    {
        this.fRepDate = fRepDate;
    }

    public Date getfRepDate() 
    {
        return fRepDate;
    }
    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 Date getBeginRepDate() {
        return beginRepDate;
    }

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

    public Date getEndRepDate() {
        return endRepDate;
    }

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

217 218 219 220 221 222 223 224
    public Date getCalendarDate() {
        return calendarDate;
    }

    public void setCalendarDate(Date calendarDate) {
        this.calendarDate = calendarDate;
    }

耿迪迪's avatar
耿迪迪 committed
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
    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;
    }

    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;
    }

257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("fGasSupId", getfGasSupId())
            .append("fCompanyInfoId", getfCompanyInfoId())
            .append("fPlanQuan", getfPlanQuan())
            .append("fApprQuan", getfApprQuan())
            .append("fSupGasVol", getfSupGasVol())
            .append("fStorageVol", getfStorageVol())
            .append("fSupDate", getfSupDate())
            .append("fRepStatus", getfRepStatus())
            .append("fRepDate", getfRepDate())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("isDel", getIsDel())
            .append("remarks", getRemarks())
            .toString();
    }
}