liusuyi
2024-10-10 38f29e38fcc668171dc05c53d40a36b895c86102
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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;
 
    private ArdTankWall ardTankWall;
 
    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;
    }
 
    public ArdTankWall getArdTankWall() {
        return ardTankWall;
    }
 
    public void setArdTankWall(ArdTankWall ardTankWall) {
        this.ardTankWall = ardTankWall;
    }
 
    @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();
    }
}