zhangnaisong
2023-08-02 8afb9184600eb1524b38b172e458143b16739b34
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
package com.ruoyi.app.patrolplan.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;
 
/**
 * app巡检计划人员对象 ard_app_patroluser
 * 
 * @author ard
 * @date 2023-08-02
 */
public class ArdAppPatroluser extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    @Excel(name = "主键")
    private String reserved1;
 
    /** 巡检主键 */
    @Excel(name = "巡检主键")
    private String patrolplanId;
 
    /** app单兵端用户主键 */
    @Excel(name = "app单兵端用户主键")
    private String appUserId;
 
    public void setReserved1(String reserved1) 
    {
        this.reserved1 = reserved1;
    }
 
    public String getReserved1() 
    {
        return reserved1;
    }
    public void setPatrolplanId(String patrolplanId) 
    {
        this.patrolplanId = patrolplanId;
    }
 
    public String getPatrolplanId() 
    {
        return patrolplanId;
    }
    public void setAppUserId(String appUserId) 
    {
        this.appUserId = appUserId;
    }
 
    public String getAppUserId() 
    {
        return appUserId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("reserved1", getReserved1())
            .append("patrolplanId", getPatrolplanId())
            .append("appUserId", getAppUserId())
            .toString();
    }
}