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