Administrator
2023-08-03 c426fdcccb92bc3ac22c7eb4e34c50ce78e59a55
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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_patrolplan
 * 
 * @author ard
 * @date 2023-08-02
 */
public class ArdAppPatrolplan extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 结束时间(每天为时分秒,仅一次为年月日时分秒) */
    @Excel(name = "结束时间(每天为时分秒,仅一次为年月日时分秒)")
    private String patroEndTime;
 
    /** 制定人主键 */
    @Excel(name = "制定人主键")
    private String userId;
 
    /** 周期 */
    @Excel(name = "周期")
    private String cycle;
 
    /** 主键 */
    private String id;
 
    /** 巡检计划名称 */
    @Excel(name = "巡检计划名称")
    private String planName;
 
    /** 开始时间(每天为时分秒,仅一次为年月日时分秒) */
    @Excel(name = "开始时间(每天为时分秒,仅一次为年月日时分秒)")
    private String patroBeginTime;
 
    public void setPatroEndTime(String patroEndTime) 
    {
        this.patroEndTime = patroEndTime;
    }
 
    public String getPatroEndTime() 
    {
        return patroEndTime;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
    public void setCycle(String cycle) 
    {
        this.cycle = cycle;
    }
 
    public String getCycle() 
    {
        return cycle;
    }
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setPlanName(String planName) 
    {
        this.planName = planName;
    }
 
    public String getPlanName() 
    {
        return planName;
    }
    public void setPatroBeginTime(String patroBeginTime) 
    {
        this.patroBeginTime = patroBeginTime;
    }
 
    public String getPatroBeginTime() 
    {
        return patroBeginTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("patroEndTime", getPatroEndTime())
            .append("userId", getUserId())
            .append("cycle", getCycle())
            .append("createTime", getCreateTime())
            .append("id", getId())
            .append("planName", getPlanName())
            .append("patroBeginTime", getPatroBeginTime())
            .toString();
    }
}