whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
package com.whyc.dto;
 
public class HeiHeStationDTO {
    /**集控系统厂站ID*/
    private Long id;
    /**集控系统厂站名称*/
    private String name;
    /**电压等级*/
    private String bvId;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getBvId() {
        return bvId;
    }
 
    public void setBvId(String bvId) {
        this.bvId = bvId;
    }
}