SvgAttribute.java 1.03 KB
package com.bsth.entity.realcontrol;

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

/**
 * 主页SVG模拟图属性设置
 * 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;
    }
}