地质所 沉降监测网建设项目
zmk
2024-05-15 9e3afc6d0fa514f986d3fea40fa23124e6fb5070
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
package com.javaweb.geo.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
 
/**
 * 数据来源对象 js_data_source
 * 
 * @author cxy
 * @date 2022-12-30
 */
public class DataSource extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String ids;
 
    /** 数据来源 */
    @Excel(name = "数据来源")
    private String dataSource;
 
    /** 平台密钥 */
    @Excel(name = "平台密钥")
    private String secretKey;
 
    /** 平台密钥 */
    @Excel(name = "公司Id")
    private String companyId;
 
    public void setIds(String ids) 
    {
        this.ids = ids;
    }
 
    public String getIds() 
    {
        return ids;
    }
    public void setDataSource(String dataSource) 
    {
        this.dataSource = dataSource;
    }
 
    public String getDataSource() 
    {
        return dataSource;
    }
    public void setSecretKey(String secretKey) 
    {
        this.secretKey = secretKey;
    }
 
    public String getSecretKey() 
    {
        return secretKey;
    }
 
    public String getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(String companyId) {
        this.companyId = companyId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("ids", getIds())
            .append("dataSource", getDataSource())
            .append("secretKey", getSecretKey())
            .append("companyId", getCompanyId())
            .toString();
    }
}