package com.ruoyi.station.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 指纹读头对象 mj_fingerprint_read_head
|
*
|
* @author ruoyi
|
* @date 2020-08-06
|
*/
|
public class MjFingerprintReadHead extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private String id;
|
|
/** 门id */
|
@Excel(name = "门id")
|
private String doorId;
|
|
/** 门的名字 */
|
@Excel(name = "门的名字")
|
private String doorName;
|
|
/** 区域父id */
|
@Excel(name = "区域父id")
|
private String areaId;
|
|
/** 区域名称 */
|
@Excel(name = "区域名称")
|
private String areaName;
|
|
|
/** IP地址或其他标识 */
|
@Excel(name = "IP地址或其他标识")
|
private String ipOrOther;
|
|
/** IP地址或其他标识 */
|
@Excel(name = "端口号")
|
private String port;
|
|
/** 品牌 */
|
@Excel(name = "品牌")
|
private String brand;
|
|
/** 型号 */
|
@Excel(name = "型号")
|
private String model;
|
|
/** 0/进门1/出门 */
|
@Excel(name = "0/进门1/出门")
|
private Integer direction;
|
|
/** 0/未绑定1/绑定 */
|
@Excel(name = "0/未绑定1/绑定")
|
private Integer bindingStatus;
|
|
/** null */
|
private Integer delFlag;
|
|
/** 控制读头标识,0/中控1/霍尼韦尔2/..... */
|
@Excel(name = "控制读头标识,0/中控1/霍尼韦尔2/.....")
|
private Integer identification;
|
|
/** 是否禁用0/未禁用1/禁用 */
|
@Excel(name = "是否禁用0/未禁用1/禁用")
|
private Integer status;
|
|
private Integer showStatus;//连接状态是否正常 0:不正常 1:正常
|
|
/*0/新设备1/旧设备*/
|
private Integer newOldStatus;
|
|
public Integer getNewOldStatus() {
|
return newOldStatus;
|
}
|
|
public void setNewOldStatus(Integer newOldStatus) {
|
this.newOldStatus = newOldStatus;
|
}
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setDoorId(String doorId)
|
{
|
this.doorId = doorId;
|
}
|
|
public String getDoorId()
|
{
|
return doorId;
|
}
|
public void setDoorName(String doorName)
|
{
|
this.doorName = doorName;
|
}
|
|
public String getDoorName()
|
{
|
return doorName;
|
}
|
public void setAreaId(String areaId)
|
{
|
this.areaId = areaId;
|
}
|
|
public String getAreaId()
|
{
|
return areaId;
|
}
|
public void setAreaName(String areaName)
|
{
|
this.areaName = areaName;
|
}
|
|
public String getAreaName()
|
{
|
return areaName;
|
}
|
|
public String getPort() {
|
return port;
|
}
|
|
public void setPort(String port) {
|
this.port = port;
|
}
|
|
public void setIpOrOther(String ipOrOther)
|
{
|
this.ipOrOther = ipOrOther;
|
}
|
|
public String getIpOrOther()
|
{
|
return ipOrOther;
|
}
|
public void setBrand(String brand)
|
{
|
this.brand = brand;
|
}
|
|
public String getBrand()
|
{
|
return brand;
|
}
|
public void setModel(String model)
|
{
|
this.model = model;
|
}
|
|
public String getModel()
|
{
|
return model;
|
}
|
public void setDirection(Integer direction)
|
{
|
this.direction = direction;
|
}
|
|
public Integer getDirection()
|
{
|
return direction;
|
}
|
public void setBindingStatus(Integer bindingStatus)
|
{
|
this.bindingStatus = bindingStatus;
|
}
|
|
public Integer getBindingStatus()
|
{
|
return bindingStatus;
|
}
|
public void setDelFlag(Integer delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public Integer getDelFlag()
|
{
|
return delFlag;
|
}
|
public void setIdentification(Integer identification)
|
{
|
this.identification = identification;
|
}
|
|
public Integer getIdentification()
|
{
|
return identification;
|
}
|
public void setStatus(Integer status)
|
{
|
this.status = status;
|
}
|
|
public Integer getStatus()
|
{
|
return status;
|
}
|
|
public Integer getShowStatus() {
|
return showStatus;
|
}
|
|
public void setShowStatus(Integer showStatus) {
|
this.showStatus = showStatus;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("doorId", getDoorId())
|
.append("doorName", getDoorName())
|
.append("areaId", getAreaId())
|
.append("areaName", getAreaName())
|
.append("port",getPort())
|
.append("ipOrOther", getIpOrOther())
|
.append("brand", getBrand())
|
.append("model", getModel())
|
.append("direction", getDirection())
|
.append("bindingStatus", getBindingStatus())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("createBy", getCreateBy())
|
.append("updateBy", getUpdateBy())
|
.append("delFlag", getDelFlag())
|
.append("identification", getIdentification())
|
.append("status", getStatus())
|
.toString();
|
}
|
}
|