namespace IStation.Application
{
///
/// 实时数据调度
///
public class ScadaDispatchInput
{
///
///
///
public string search { get; set; } = "history";
///
///
///
public string starttime { get; set; }
///
///
///
public string endtime { get; set; }
///
///
///
public string Resolution { get; set; } = "300";
///
///
///
public string[] taglist { get; set; }
///
/// 自动生成
///
public void AutoCreate()
{
var list = new List();
}
}
}