package com.fgkj.dto;
|
|
import java.io.File;
|
import java.io.Serializable;
|
import java.sql.Blob;
|
import java.util.Arrays;
|
|
public class User_Chart implements Serializable{
|
private Integer num;
|
private String Chart_name;
|
private String Chart_file;
|
private File Chart_logo;
|
private File Chart_normal;
|
private File Chart_behind;
|
private File Chart_warn;
|
private File Chart_timeout;
|
|
private File Chart_nuclear_cap;//核容放电
|
private File Chart_dev_alarm;//设备告警
|
private File Chart_pre_charge;//预充电
|
private File Chart_online_charge;//在线充电
|
|
private Blob Chart_logo_blob;
|
private Blob Chart_normal_blob;
|
private Blob Chart_behind_blob;
|
private Blob Chart_warn_blob;
|
private Blob Chart_timeout_blob;
|
|
|
public Integer getNum() {
|
return num;
|
}
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
public String getChart_name() {
|
return Chart_name;
|
}
|
public void setChart_name(String chart_name) {
|
Chart_name = chart_name;
|
}
|
public String getChart_file() {
|
return Chart_file;
|
}
|
public void setChart_file(String chart_file) {
|
Chart_file = chart_file;
|
}
|
public File getChart_logo() {
|
return Chart_logo;
|
}
|
public void setChart_logo(File chart_logo) {
|
Chart_logo = chart_logo;
|
}
|
public File getChart_normal() {
|
return Chart_normal;
|
}
|
public void setChart_normal(File chart_normal) {
|
Chart_normal = chart_normal;
|
}
|
public File getChart_behind() {
|
return Chart_behind;
|
}
|
public void setChart_behind(File chart_behind) {
|
Chart_behind = chart_behind;
|
}
|
public File getChart_warn() {
|
return Chart_warn;
|
}
|
public void setChart_warn(File chart_warn) {
|
Chart_warn = chart_warn;
|
}
|
public File getChart_timeout() {
|
return Chart_timeout;
|
}
|
public void setChart_timeout(File chart_timeout) {
|
Chart_timeout = chart_timeout;
|
}
|
|
|
|
|
public File getChart_nuclear_cap() {
|
return Chart_nuclear_cap;
|
}
|
public void setChart_nuclear_cap(File chart_nuclear_cap) {
|
Chart_nuclear_cap = chart_nuclear_cap;
|
}
|
public File getChart_dev_alarm() {
|
return Chart_dev_alarm;
|
}
|
public void setChart_dev_alarm(File chart_dev_alarm) {
|
Chart_dev_alarm = chart_dev_alarm;
|
}
|
public File getChart_pre_charge() {
|
return Chart_pre_charge;
|
}
|
public void setChart_pre_charge(File chart_pre_charge) {
|
Chart_pre_charge = chart_pre_charge;
|
}
|
public File getChart_online_charge() {
|
return Chart_online_charge;
|
}
|
public void setChart_online_charge(File chart_online_charge) {
|
Chart_online_charge = chart_online_charge;
|
}
|
|
|
|
public Blob getChart_logo_blob() {
|
return Chart_logo_blob;
|
}
|
public void setChart_logo_blob(Blob chart_logo_blob) {
|
Chart_logo_blob = chart_logo_blob;
|
}
|
public Blob getChart_normal_blob() {
|
return Chart_normal_blob;
|
}
|
public void setChart_normal_blob(Blob chart_normal_blob) {
|
Chart_normal_blob = chart_normal_blob;
|
}
|
public Blob getChart_behind_blob() {
|
return Chart_behind_blob;
|
}
|
public void setChart_behind_blob(Blob chart_behind_blob) {
|
Chart_behind_blob = chart_behind_blob;
|
}
|
public Blob getChart_warn_blob() {
|
return Chart_warn_blob;
|
}
|
public void setChart_warn_blob(Blob chart_warn_blob) {
|
Chart_warn_blob = chart_warn_blob;
|
}
|
public Blob getChart_timeout_blob() {
|
return Chart_timeout_blob;
|
}
|
public void setChart_timeout_blob(Blob chart_timeout_blob) {
|
Chart_timeout_blob = chart_timeout_blob;
|
}
|
@Override
|
public String toString() {
|
return "User_Chart [num=" + num + ", Chart_name=" + Chart_name
|
+ ", Chart_file=" + Chart_file + ", Chart_logo=" + Chart_logo
|
+ ", Chart_normal=" + Chart_normal + ", Chart_behind="
|
+ Chart_behind + ", Chart_warn=" + Chart_warn
|
+ ", Chart_timeout=" + Chart_timeout + ", Chart_nuclear_cap="
|
+ Chart_nuclear_cap + ", Chart_dev_alarm=" + Chart_dev_alarm
|
+ ", Chart_pre_charge=" + Chart_pre_charge
|
+ ", Chart_online_charge=" + Chart_online_charge
|
+ ", Chart_logo_blob=" + Chart_logo_blob
|
+ ", Chart_normal_blob=" + Chart_normal_blob
|
+ ", Chart_behind_blob=" + Chart_behind_blob
|
+ ", Chart_warn_blob=" + Chart_warn_blob
|
+ ", Chart_timeout_blob=" + Chart_timeout_blob + "]";
|
}
|
|
|
}
|