SvgAttribute.java
1.03 KB
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
package com.bsth.entity.realcontrol;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 主页SVGSimulated diagram属性设置
* Created by panzhao on 2017/1/6.
*/
@Entity
@Table(name = "bsth_c_svg_attr")
public class SvgAttribute {
@Id
private String lineCode;
/**
* 要隐藏的站点编码 , 号分割多个
*/
private String hideStations;
/**
* 站点别名 json对象字符串
*/
private String nicknames;
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public String getHideStations() {
return hideStations;
}
public void setHideStations(String hideStations) {
this.hideStations = hideStations;
}
public String getNicknames() {
return nicknames;
}
public void setNicknames(String nicknames) {
this.nicknames = nicknames;
}
}