ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
package com.zhitan.meter.domain;
 
import io.swagger.annotations.ApiModel;
 
import java.util.Objects;
 
/**
 * @ClassName: MeterParam
 * @Author: Yarry
 * @CreateTime: 2024-09-28 11-32-01
 * @Description: TODO
 * @Version: 1.0
 * @Since: JDK1.8
 */
 
@ApiModel(value = "查询配置信息")
public class MeterParam {
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String meterName;
 
    private String indexId;
 
    private String code;
 
    private String name;
 
    public MeterParam() {
    }
 
    public MeterParam(String id, String meterName, String indexId, String code, String name) {
        this.id = id;
        this.meterName = meterName;
        this.indexId = indexId;
        this.code = code;
        this.name = name;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getMeterName() {
        return meterName;
    }
 
    public void setMeterName(String meterName) {
        this.meterName = meterName;
    }
 
    public String getIndexId() {
        return indexId;
    }
 
    public void setIndexId(String indexId) {
        this.indexId = indexId;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    @Override
    public String toString() {
        return "MeterParam{" +
                "id='" + id + '\'' +
                ", meterName='" + meterName + '\'' +
                ", indexId='" + indexId + '\'' +
                ", code='" + code + '\'' +
                ", name='" + name + '\'' +
                '}';
    }
 
    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        MeterParam that = (MeterParam) o;
        return Objects.equals(id, that.id) && Objects.equals(meterName, that.meterName) && Objects.equals(indexId, that.indexId) && Objects.equals(code, that.code) && Objects.equals(name, that.name);
    }
 
    @Override
    public int hashCode() {
        return Objects.hash(id, meterName, indexId, code, name);
    }
}