admin
2024-02-21 2272213fea7ab9ea6250eefad55bb113ce2b1837
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
109
110
111
112
113
114
115
116
117
118
119
120
121
package com.ruoyi.interchange.domain;
 
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 煤矿系统管理对象 tb_coal_mine_system
 * 
 * @author ruoyi
 * @date 2023-04-26
 */
public class TbCoalMineSystem extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 所属煤矿id */
    @Excel(name = "所属煤矿id")
    private Long coalMineId;
 
    /** 系统名称 */
    @Excel(name = "系统名称")
    private String systemName;
 
    /** 负责人 */
    @Excel(name = "负责人")
    private String headName;
 
    /** 负责人联系电话 */
    @Excel(name = "负责人联系电话")
    private String headPhone;
 
    /** 业务数据编码 */
    @Excel(name = "业务数据编码")
    private String systemCode;
 
    /** 上传目录路径 */
    @Excel(name = "上传目录路径")
    private String ftpUrl;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setCoalMineId(Long coalMineId) 
    {
        this.coalMineId = coalMineId;
    }
 
    public Long getCoalMineId() 
    {
        return coalMineId;
    }
    public void setSystemName(String systemName) 
    {
        this.systemName = systemName;
    }
 
    public String getSystemName() 
    {
        return systemName;
    }
    public void setHeadName(String headName) 
    {
        this.headName = headName;
    }
 
    public String getHeadName() 
    {
        return headName;
    }
    public void setHeadPhone(String headPhone) 
    {
        this.headPhone = headPhone;
    }
 
    public String getHeadPhone() 
    {
        return headPhone;
    }
    public void setSystemCode(String systemCode) 
    {
        this.systemCode = systemCode;
    }
 
    public String getSystemCode() 
    {
        return systemCode;
    }
    public void setFtpUrl(String ftpUrl) 
    {
        this.ftpUrl = ftpUrl;
    }
 
    public String getFtpUrl() 
    {
        return ftpUrl;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("coalMineId", getCoalMineId())
            .append("systemName", getSystemName())
            .append("headName", getHeadName())
            .append("headPhone", getHeadPhone())
            .append("systemCode", getSystemCode())
            .append("ftpUrl", getFtpUrl())
            .toString();
    }
}