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_process_log
|
*
|
* @author ard
|
* @date 2024-07-10
|
*/
|
public class ArdTankLockProcessLog 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 userId;
|
|
/** 操作用户账号 */
|
@Excel(name = "操作用户账号")
|
private String userName;
|
|
/** 操作 */
|
@Excel(name = "操作")
|
private String process;
|
|
/** 操作原因 */
|
@Excel(name = "操作原因")
|
private String processReason;
|
|
/** 经度 */
|
@Excel(name = "经度")
|
private String longitude;
|
|
/** 纬度 */
|
@Excel(name = "纬度")
|
private String latitude;
|
|
/** 操作时间 */
|
@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 setUserId(String userId)
|
{
|
this.userId = userId;
|
}
|
|
public String getUserId()
|
{
|
return userId;
|
}
|
public void setUserName(String userName)
|
{
|
this.userName = userName;
|
}
|
|
public String getUserName()
|
{
|
return userName;
|
}
|
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 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("userId", getUserId())
|
.append("userName", getUserName())
|
.append("process", getProcess())
|
.append("processReason", getProcessReason())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("processTime", getProcessTime())
|
.toString();
|
}
|
}
|