TEmergencyDrills.java 3.86 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
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_emergency_drills
 * 
 * @author zehong
 * @date 2024-04-19
 */
public class TEmergencyDrills extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 演练ID */
    private Long fDrillsId;

    /** 演练时间 */
    @Excel(name = "演练时间")
    private String fDrillsTime;

    /** 事件 */
    @Excel(name = "事件")
    private String fEvent;

    /** 地点 */
    @Excel(name = "地点")
    private String fPlace;

军师中郎将's avatar
军师中郎将 committed
35 36
    /** 参与演练人员 */
    @Excel(name = "参与演练人员")
37 38
    private String fPerDep;

军师中郎将's avatar
军师中郎将 committed
39 40 41 42 43 44 45 46 47 48 49 50
    /**  参与演练部门 */
    @Excel(name = "参与演练部门")
    private String fDrillDepartment;

    public String getfDrillDepartment() {
        return fDrillDepartment;
    }

    public void setfDrillDepartment(String fDrillDepartment) {
        this.fDrillDepartment = fDrillDepartment;
    }

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
    /** 演练内容 */
    private String fDrillsContent;


    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date fCreateTime;

    /** 修改时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date fUpdateTime;

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

    /** 备注 */
    private String fRemarks;

    public void setfDrillsId(Long fDrillsId) 
    {
        this.fDrillsId = fDrillsId;
    }

    public Long getfDrillsId() 
    {
        return fDrillsId;
    }
    public void setfDrillsTime(String fDrillsTime) 
    {
        this.fDrillsTime = fDrillsTime;
    }

    public String getfDrillsTime() 
    {
        return fDrillsTime;
    }
    public void setfEvent(String fEvent) 
    {
        this.fEvent = fEvent;
    }

    public String getfEvent() 
    {
        return fEvent;
    }
    public void setfPlace(String fPlace) 
    {
        this.fPlace = fPlace;
    }

    public String getfPlace() 
    {
        return fPlace;
    }
    public void setfPerDep(String fPerDep) 
    {
        this.fPerDep = fPerDep;
    }

    public String getfPerDep() 
    {
        return fPerDep;
    }
    public void setfDrillsContent(String fDrillsContent) 
    {
        this.fDrillsContent = fDrillsContent;
    }

    public String getfDrillsContent() 
    {
        return fDrillsContent;
    }
    public void setfCreateTime(Date fCreateTime) 
    {
        this.fCreateTime = fCreateTime;
    }

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

    public Date getfUpdateTime() 
    {
        return fUpdateTime;
    }
    public void setfIsDel(String fIsDel) 
    {
        this.fIsDel = fIsDel;
    }

    public String getfIsDel() 
    {
        return fIsDel;
    }
    public void setfRemarks(String fRemarks) 
    {
        this.fRemarks = fRemarks;
    }

    public String getfRemarks() 
    {
        return fRemarks;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("fDrillsId", getfDrillsId())
            .append("fDrillsTime", getfDrillsTime())
            .append("fEvent", getfEvent())
            .append("fPlace", getfPlace())
            .append("fPerDep", getfPerDep())
            .append("fDrillsContent", getfDrillsContent())
军师中郎将's avatar
军师中郎将 committed
169
            .append("fDrillDepartment", getfDrillDepartment())
170 171 172 173 174 175 176
            .append("fCreateTime", getfCreateTime())
            .append("fUpdateTime", getfUpdateTime())
            .append("fIsDel", getfIsDel())
            .append("fRemarks", getfRemarks())
            .toString();
    }
}