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_lock
|
*
|
* @author ard
|
* @date 2024-06-29
|
*/
|
public class ArdTankWallLock extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 操作类型 */
|
@Excel(name = "操作类型")
|
private String processType;
|
|
/** 主键 */
|
private String id;
|
|
/** 电子围栏主键 */
|
@Excel(name = "电子围栏主键")
|
private String wallId;
|
|
/** 锁主键 */
|
@Excel(name = "锁主键")
|
private String lockId;
|
|
public void setProcessType(String processType)
|
{
|
this.processType = processType;
|
}
|
|
public String getProcessType()
|
{
|
return processType;
|
}
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setWallId(String wallId)
|
{
|
this.wallId = wallId;
|
}
|
|
public String getWallId()
|
{
|
return wallId;
|
}
|
public void setLockId(String lockId)
|
{
|
this.lockId = lockId;
|
}
|
|
public String getLockId()
|
{
|
return lockId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("processType", getProcessType())
|
.append("id", getId())
|
.append("wallId", getWallId())
|
.append("lockId", getLockId())
|
.toString();
|
}
|
}
|