using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Applications.UniversalApi_WebConsole_App.Models.TankMonitor
{
public class TankMonitorInfo
{
//public TankDetailsTotal tankdetails { get; set; }
public string mqttConnectionString { get; set; }
///
/// 用于图表查询页面
///
public QueryInfo QueryInformation { get; set; }
///
/// 据此判断当前需要显示哪一页面
///
public PageNavigationInfo NavigationInfo { get; set; }
public CurrentTank currentTank { get; set; }
}
public class CurrentTank
{
public string currentTankID { get; set; }
public string currentFuelID { get; set; }
public string currentFuelKind { get; set; }
}
//public class TankDetailsTotal
//{
// public string testdata { get; set; }
// public string FuelVolume { get; set; }
// public string TankLastVolume { get; set; }
// public string Temperature { get; set; }
// public string TcVolume { get; set; }
// public string WaterVolume { get; set; }
// public string TankTotalVolume { get; set; }
// public string LastInventoryVolume { get; set; }
//}
}