Config.java 1.24 KB
package com.bjivt.entity.showtime;

public class Config {
    private Integer id;

    private String key;

    private String value;

    private String additionData;

    private Integer type;

	private int enabled;
	
	private String conUrl;

    public String getConUrl() {
		return conUrl;
	}

	public void setConUrl(String conUrl) {
		this.conUrl = conUrl;
	}

	public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key == null ? null : key.trim();
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value == null ? null : value.trim();
    }

    public String getAdditionData() {
        return additionData;
    }

    public void setAdditionData(String additionData) {
        this.additionData = additionData == null ? null : additionData.trim();
    }

    public Integer getType() {
        return type;
    }

    public void setType(Integer type) {
        this.type = type;
    }

	public int getEnabled() {
		return enabled;
	}

	public void setEnabled(int enabled) {
		this.enabled = enabled;
	}
}