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_wall_temporary
|
*
|
* @author ard
|
* @date 2024-08-01
|
*/
|
public class ArdTankWallTemporary extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 围栏名称 */
|
@Excel(name = "围栏名称")
|
private String wallName;
|
|
/** 经度 */
|
@Excel(name = "经度")
|
private Double longitude;
|
|
/** 纬度 */
|
@Excel(name = "纬度")
|
private Double latitude;
|
|
/** 距离 */
|
@Excel(name = "距离")
|
private Integer distance;
|
|
/** 时长 */
|
@Excel(name = "时长")
|
private String interval;
|
|
/** 操作时间 */
|
@Excel(name = "操作时间")
|
private String processTime;
|
|
/** 1为生效,0为失效,-1为到期 */
|
@Excel(name = "1为生效,0为失效,-1为到期")
|
private String processMark;
|
|
/** 用户主键 */
|
@Excel(name = "用户主键")
|
private String userId;
|
|
/** 用户名称 */
|
@Excel(name = "用户名称")
|
private String userName;
|
|
private String processInfo;
|
|
private String cancelTime;
|
|
private String cancelUserName;
|
|
private String cancelUserId;
|
|
private Long mark;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setWallName(String wallName)
|
{
|
this.wallName = wallName;
|
}
|
|
public String getWallName()
|
{
|
return wallName;
|
}
|
public void setLongitude(Double longitude)
|
{
|
this.longitude = longitude;
|
}
|
|
public Double getLongitude()
|
{
|
return longitude;
|
}
|
public void setLatitude(Double latitude)
|
{
|
this.latitude = latitude;
|
}
|
|
public Double getLatitude()
|
{
|
return latitude;
|
}
|
public void setDistance(Integer distance)
|
{
|
this.distance = distance;
|
}
|
|
public Integer getDistance()
|
{
|
return distance;
|
}
|
public void setInterval(String interval)
|
{
|
this.interval = interval;
|
}
|
|
public String getInterval()
|
{
|
return interval;
|
}
|
public void setProcessTime(String processTime)
|
{
|
this.processTime = processTime;
|
}
|
|
public String getProcessTime()
|
{
|
return processTime;
|
}
|
public void setProcessMark(String processMark)
|
{
|
this.processMark = processMark;
|
}
|
|
public String getProcessMark()
|
{
|
return processMark;
|
}
|
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 String getProcessInfo() {
|
return processInfo;
|
}
|
|
public void setProcessInfo(String processInfo) {
|
this.processInfo = processInfo;
|
}
|
|
public String getCancelTime() {
|
return cancelTime;
|
}
|
|
public void setCancelTime(String cancelTime) {
|
this.cancelTime = cancelTime;
|
}
|
|
public Long getMark() {
|
return mark;
|
}
|
|
public void setMark(Long mark) {
|
this.mark = mark;
|
}
|
|
public String getCancelUserName() {
|
return cancelUserName;
|
}
|
|
public void setCancelUserName(String cancelUserName) {
|
this.cancelUserName = cancelUserName;
|
}
|
|
public String getCancelUserId() {
|
return cancelUserId;
|
}
|
|
public void setCancelUserId(String cancelUserId) {
|
this.cancelUserId = cancelUserId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("wallName", getWallName())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("distance", getDistance())
|
.append("interval", getInterval())
|
.append("processTime", getProcessTime())
|
.append("processMark", getProcessMark())
|
.append("userId", getUserId())
|
.append("userName", getUserName())
|
.toString();
|
}
|
}
|