TSupBalStopSupOprPressLog.java 2.17 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
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_stop_sup_opr_press_log
 * 
 * @author zehong
 * @date 2024-07-16
 */
public class TSupBalStopSupOprPressLog extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** id */
    private Long fOprPressLogId;

    /** 关联-供需平衡-停气监管-表id */
    @Excel(name = "关联-供需平衡-停气监管-表id")
    private Long fGasStopId;

    /** 停气进度,0-未停气,1-已停气,2-已恢复 */
    @Excel(name = "停气进度,0-未停气,1-已停气,2-已恢复")
    private String fStopProgress;

    /** 操作停气进度时间 */
32
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
耿迪迪's avatar
耿迪迪 committed
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
    @Excel(name = "操作停气进度时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date fOprDate;

    public void setfOprPressLogId(Long fOprPressLogId) 
    {
        this.fOprPressLogId = fOprPressLogId;
    }

    public Long getfOprPressLogId() 
    {
        return fOprPressLogId;
    }
    public void setfGasStopId(Long fGasStopId) 
    {
        this.fGasStopId = fGasStopId;
    }

    public Long getfGasStopId() 
    {
        return fGasStopId;
    }
    public void setfStopProgress(String fStopProgress) 
    {
        this.fStopProgress = fStopProgress;
    }

    public String getfStopProgress() 
    {
        return fStopProgress;
    }
    public void setfOprDate(Date fOprDate) 
    {
        this.fOprDate = fOprDate;
    }

    public Date getfOprDate() 
    {
        return fOprDate;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("fOprPressLogId", getfOprPressLogId())
            .append("fGasStopId", getfGasStopId())
            .append("fStopProgress", getfStopProgress())
            .append("fOprDate", getfOprDate())
            .toString();
    }
}