using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Applications.UniversalApi_WebConsole_App.Models.TankMonitor { public enum Criteria { 气液比, 燃油速度, 油气速度, 油气浓度, 液阻压力 } public class QueryInfo { /// /// The format should be yyyy-mm-dd /// public string StartDate { get; set; } /// /// The format should be yyyy-mm-dd /// public string EndDate { get; set; } /// /// Nozzle Number /// public string NozzleId { get; set; } /// /// 选择的查询条件:气液比、燃油速度、油气速度、油气浓度、液阻压力 /// public Criteria CurrentCriteria { get; set; } /// /// 用作气液比的图表查询页面,供客户选择按什么标准查询 气液比、燃油速度、油气速度、油气浓度、液阻压力 /// 目前只支持气液比 /// public List OptionalCriteria { get; set; } /// /// 站里所有的油枪 /// public List OptionalNozzleId { get; set; } } }