TNfcSetting.java 4.09 KB
Newer Older
吴卿华's avatar
吴卿华 committed
1
package com.zehong.system.domain;
吴卿华's avatar
吴卿华 committed
2
import com.fasterxml.jackson.annotation.JsonFormat;
吴卿华's avatar
吴卿华 committed
3 4 5
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

吴卿华's avatar
吴卿华 committed
6 7
import java.util.Date;

吴卿华's avatar
吴卿华 committed
8 9 10 11 12 13 14 15 16 17 18 19 20
/**
 * setting对象 t_nfc_setting
 *
 * @author zehong
 * @date 2022-10-17
 */
public class TNfcSetting extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** nfc_id */
    private Long nfcId;

吴卿华's avatar
吴卿华 committed
21 22
    private Long TNfcSetting;

吴卿华's avatar
吴卿华 committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
    /** 排序 */
    @Excel(name = "排序")
    private Integer patrolSort;

    /** 巡检地点 */
    @Excel(name = "巡检地点")
    private String patrolAddress;

    /** 巡检内容 */
    @Excel(name = "巡检内容")
    private String patrolComent;

    /** 巡检频次 */
    @Excel(name = "巡检频次")
    private String patrolFrequency;

    /** nfc编号 */
    @Excel(name = "nfc编号")
    private String nfcNum;

    /** 是否删除 0否 1是 */
    private Integer isDel;

    /**
吴卿华's avatar
吴卿华 committed
47
     * 区域 编号
吴卿华's avatar
吴卿华 committed
48 49 50
     */
    private String region;

吴卿华's avatar
吴卿华 committed
51 52 53 54 55
    /**
     * 巡检区域
     */
    private String nickName;

吴卿华's avatar
吴卿华 committed
56 57 58 59 60 61 62 63 64 65 66 67 68
    /**
     * 开始时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String applyWorkStartTime;

    /**
     * 结束时间
     * @return
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String applyWorkEndTime;

吴卿华's avatar
吴卿华 committed
69 70 71
    public Long getTNfcSetting() {
        return TNfcSetting;
    }
吴卿华's avatar
吴卿华 committed
72

吴卿华's avatar
吴卿华 committed
73 74 75
    public void setTNfcSetting(Long TNfcSetting) {
        this.TNfcSetting = TNfcSetting;
    }
吴卿华's avatar
吴卿华 committed
76

吴卿华's avatar
吴卿华 committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    public String getApplyWorkStartTime() {
        return applyWorkStartTime;
    }

    public void setApplyWorkStartTime(String applyWorkStartTime) {
        this.applyWorkStartTime = applyWorkStartTime;
    }

    public String getApplyWorkEndTime() {
        return applyWorkEndTime;
    }

    public void setApplyWorkEndTime(String applyWorkEndTime) {
        this.applyWorkEndTime = applyWorkEndTime;
    }

吴卿华's avatar
吴卿华 committed
93 94 95 96 97 98 99
    public String getNickName() {
        return nickName;
    }

    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
吴卿华's avatar
吴卿华 committed
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

    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public String getRegion() {
        return region;
    }

    public void setRegion(String region) {
        this.region = region;
    }

    public void setNfcId(Long nfcId)
    {
        this.nfcId = nfcId;
    }

    public Long getNfcId()
    {
        return nfcId;
    }
    public void setPatrolSort(Integer patrolSort)
    {
        this.patrolSort = patrolSort;
    }

    public Integer getPatrolSort()
    {
        return patrolSort;
    }
    public void setPatrolAddress(String patrolAddress)
    {
        this.patrolAddress = patrolAddress;
    }

    public String getPatrolAddress()
    {
        return patrolAddress;
    }
    public void setPatrolComent(String patrolComent)
    {
        this.patrolComent = patrolComent;
    }

    public String getPatrolComent()
    {
        return patrolComent;
    }
    public void setPatrolFrequency(String patrolFrequency)
    {
        this.patrolFrequency = patrolFrequency;
    }

    public String getPatrolFrequency()
    {
        return patrolFrequency;
    }
    public void setNfcNum(String nfcNum)
    {
        this.nfcNum = nfcNum;
    }

    public String getNfcNum()
    {
        return nfcNum;
    }
    public void setIsDel(Integer isDel)
    {
        this.isDel = isDel;
    }

    public Integer getIsDel()
    {
        return isDel;
    }

    @Override
    public String toString() {
        return "TNfcSetting{" +
                "nfcId=" + nfcId +
                ", patrolSort=" + patrolSort +
                ", patrolAddress='" + patrolAddress + '\'' +
                ", patrolComent='" + patrolComent + '\'' +
                ", patrolFrequency='" + patrolFrequency + '\'' +
                ", nfcNum='" + nfcNum + '\'' +
                ", isDel=" + isDel +
                ", region='" + region + '\'' +
吴卿华's avatar
吴卿华 committed
188
                ", nickName='" + nickName + '\'' +
吴卿华's avatar
吴卿华 committed
189 190
                ", applyWorkStartTime=" + applyWorkStartTime +
                ", applyWorkEndTime=" + applyWorkEndTime +
吴卿华's avatar
吴卿华 committed
191 192 193
                '}';
    }
}