TSafeEquipmentStandingBook.java 4.94 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 46 47 48 49 50 51 52 53 54 55
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_safe_equipment_standing_book
 *
 * @author zehong
 * @date 2022-02-09
 */
public class TSafeEquipmentStandingBook extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 安全装置台账id */
    private Long safeEquipmentId;

    /** 用户名称 */
    @Excel(name = "用户名称")
    private String userName;

    /** 用户编号 */
    @Excel(name = "用户编号")
    private String userNo;

    /** 用户详细地址 */
    @Excel(name = "用户详细地址")
    private String userAddress;

    /** 身份证号 */
    @Excel(name = "身份证号")
    private String idCard;

    /** 联系电话 */
    @Excel(name = "联系电话")
    private String linkMobile;

    /** 安全装置类型 */
    private String equipmentType;

    /** 安装时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "安装时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date installTime;

    /** 品牌名称 */
    @Excel(name = "品牌名称")
    private String brandName;

    /** 是否删除(0正常,1删除) */
56
    @Excel(name = "是否删除",readConverterExp = "0=否,1=是")
57 58 59 60 61 62 63 64
    private String isDel;

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

    private String userType;

65 66 67 68 69 70 71 72 73 74 75 76
    /**
     * 所属企业id 不是必填
     */
    private String enterpriseId;

    /**
     * 所属企业name 查询 和 导出使用
     */
    /** 备注 */
    @Excel(name = "所属企业")
    private String enterpriseName;

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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public String getUserType() {
        return userType;
    }

    public void setUserType(String userType) {
        this.userType = userType;
    }

    public void setSafeEquipmentId(Long safeEquipmentId)
    {
        this.safeEquipmentId = safeEquipmentId;
    }

    public Long getSafeEquipmentId()
    {
        return safeEquipmentId;
    }
    public void setUserName(String userName)
    {
        this.userName = userName;
    }

    public String getUserName()
    {
        return userName;
    }
    public void setUserNo(String userNo)
    {
        this.userNo = userNo;
    }

    public String getUserNo()
    {
        return userNo;
    }
    public void setUserAddress(String userAddress)
    {
        this.userAddress = userAddress;
    }

    public String getUserAddress()
    {
        return userAddress;
    }
    public void setIdCard(String idCard)
    {
        this.idCard = idCard;
    }

    public String getIdCard()
    {
        return idCard;
    }
    public void setLinkMobile(String linkMobile)
    {
        this.linkMobile = linkMobile;
    }

    public String getLinkMobile()
    {
        return linkMobile;
    }
    public void setInstallTime(Date installTime)
    {
        this.installTime = installTime;
    }

    public Date getInstallTime()
    {
        return installTime;
    }

    public String getEquipmentType() {
        return equipmentType;
    }

    public void setEquipmentType(String equipmentType) {
        this.equipmentType = equipmentType;
    }

    public void setBrandName(String brandName)
    {
        this.brandName = brandName;
    }

    public String getBrandName()
    {
        return brandName;
    }
    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;
    }

189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
    public String getEnterpriseId() {
        return enterpriseId;
    }

    public void setEnterpriseId(String enterpriseId) {
        this.enterpriseId = enterpriseId;
    }

    public String getEnterpriseName() {
        return enterpriseName;
    }

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

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
    @Override
    public String toString() {
        return "TSafeEquipmentStandingBook{" +
                "safeEquipmentId=" + safeEquipmentId +
                ", userName='" + userName + '\'' +
                ", userNo='" + userNo + '\'' +
                ", userAddress='" + userAddress + '\'' +
                ", idCard='" + idCard + '\'' +
                ", linkMobile='" + linkMobile + '\'' +
                ", equipmentType='" + equipmentType + '\'' +
                ", installTime=" + installTime +
                ", brandName='" + brandName + '\'' +
                ", isDel='" + isDel + '\'' +
                ", remarks='" + remarks + '\'' +
                ", userType='" + userType + '\'' +
                '}';
    }
}