package com.ruoyi.sy.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;
|
|
/**
|
* 罐车锁自动操控日志对象 ard_tank_lock_auto_process_log
|
*
|
* @author ard
|
* @date 2024-07-12
|
*/
|
public class ArdTankLockAutoProcessLog extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 锁主键 */
|
@Excel(name = "锁主键")
|
private String lockId;
|
|
/** 锁编号 */
|
@Excel(name = "锁编号")
|
private String lockNum;
|
|
/** 三一车辆主键 */
|
@Excel(name = "三一车辆主键")
|
private String carId;
|
|
/** 车牌号 */
|
@Excel(name = "车牌号")
|
private String carPlate;
|
|
/** 电子围栏主键 */
|
@Excel(name = "电子围栏主键")
|
private String wallId;
|
|
/** 电子围栏名称 */
|
@Excel(name = "电子围栏名称")
|
private String wallName;
|
|
/** 电子围栏类型 */
|
@Excel(name = "电子围栏类型")
|
private String wallType;
|
|
/** 操作 */
|
@Excel(name = "操作")
|
private String process;
|
|
/** 操作原因 */
|
@Excel(name = "操作原因")
|
private String processReason;
|
|
/** 经度 */
|
@Excel(name = "经度")
|
private String longitude;
|
|
/** 纬度 */
|
@Excel(name = "纬度")
|
private String latitude;
|
|
/** 速度 */
|
@Excel(name = "速度")
|
private String velocity;
|
|
/** 操作时间 */
|
@Excel(name = "操作时间")
|
private String processTime;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setLockId(String lockId)
|
{
|
this.lockId = lockId;
|
}
|
|
public String getLockId()
|
{
|
return lockId;
|
}
|
public void setLockNum(String lockNum)
|
{
|
this.lockNum = lockNum;
|
}
|
|
public String getLockNum()
|
{
|
return lockNum;
|
}
|
public void setCarId(String carId)
|
{
|
this.carId = carId;
|
}
|
|
public String getCarId()
|
{
|
return carId;
|
}
|
public void setCarPlate(String carPlate)
|
{
|
this.carPlate = carPlate;
|
}
|
|
public String getCarPlate()
|
{
|
return carPlate;
|
}
|
public void setWallId(String wallId)
|
{
|
this.wallId = wallId;
|
}
|
|
public String getWallId()
|
{
|
return wallId;
|
}
|
public void setWallName(String wallName)
|
{
|
this.wallName = wallName;
|
}
|
|
public String getWallName()
|
{
|
return wallName;
|
}
|
public void setWallType(String wallType)
|
{
|
this.wallType = wallType;
|
}
|
|
public String getWallType()
|
{
|
return wallType;
|
}
|
public void setProcess(String process)
|
{
|
this.process = process;
|
}
|
|
public String getProcess()
|
{
|
return process;
|
}
|
public void setProcessReason(String processReason)
|
{
|
this.processReason = processReason;
|
}
|
|
public String getProcessReason()
|
{
|
return processReason;
|
}
|
public void setLongitude(String longitude)
|
{
|
this.longitude = longitude;
|
}
|
|
public String getLongitude()
|
{
|
return longitude;
|
}
|
public void setLatitude(String latitude)
|
{
|
this.latitude = latitude;
|
}
|
|
public String getLatitude()
|
{
|
return latitude;
|
}
|
public void setVelocity(String velocity)
|
{
|
this.velocity = velocity;
|
}
|
|
public String getVelocity()
|
{
|
return velocity;
|
}
|
public void setProcessTime(String processTime)
|
{
|
this.processTime = processTime;
|
}
|
|
public String getProcessTime()
|
{
|
return processTime;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("lockId", getLockId())
|
.append("lockNum", getLockNum())
|
.append("carId", getCarId())
|
.append("carPlate", getCarPlate())
|
.append("wallId", getWallId())
|
.append("wallName", getWallName())
|
.append("wallType", getWallType())
|
.append("process", getProcess())
|
.append("processReason", getProcessReason())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("velocity", getVelocity())
|
.append("processTime", getProcessTime())
|
.toString();
|
}
|
}
|