namespace langguanApi.Model
{
    /// 
    /// 清洁运输展示信息
    /// 
    public class CleanTransportationDto
    {
        /// 
        /// 车牌号
        /// 
        public string CarNumber { get; set; }
        /// 
        /// 车牌颜色
        /// 
        public string CarColor { get; set; }
        /// 
        /// 运输量
        /// 
        public double Weight { get; set; }
        /// 
        /// 通过时间
        /// 
        public string Time { get; set; }
        /// 
        /// 车牌类型
        /// 
        public string CarType { get; set; }
        /// 
        /// 排放类型
        /// 
        public string Effluent { get; set; }
    }
    public class CleanTransportationAllDto
    {
        /// 
        /// 清洁运输总记录
        /// 
        public List cleans { get; set; }
        /// 
        /// 国五百分比
        /// 
        public string V5Percent { get; set; } = "0";
        /// 
        /// 国五比例数量
        /// 
        public double V5Numer { get; set; }
        /// 
        /// 国五运输量百分比
        /// 
        public string V5WeightPercent { get; set; } = "0";
        /// 
        /// 国五运输量比例
        /// 
        public double V5WeightNumber { get; set; }
        /// 
        /// 国六百分比
        /// 
        public string V6Percent { get; set; } = "0";
        /// 
        /// 国六运输量
        /// 
        public double V6Number { get; set; }
        /// 
        /// 国六运输量百分比
        /// 
        public string V6WeightPercent { get; set; } = "0";
        /// 
        /// 国六运输量
        /// 
        public double V6WeightNumber { get; set; }
        /// 
        /// 电动百分比
        /// 
        public string ElectricPrecent { get; set; } = "0";
        /// 
        /// 电动运输量
        /// 
        public double ElectricNumber { get; set; }
        /// 
        /// 电动运输量百分比
        /// 
        public string ElectricWeightPrecent { get; set; } = "0";
        /// 
        /// 电动运输量
        /// 
        public double ElectricWeightNumber { get; set; }
        /// 
        /// 其他百分比
        /// 
        public string OtherPrecent { get; set; } = "0";
        /// 
        /// 其他运输量
        /// 
        public double OtherNumber { get; set; }
        /// 
        /// 其他运输量百分比
        /// 
        public string OtherWeightPrecent { get; set; } = "0";
        /// 
        /// 其他运输量
        /// 
        public double OtherWeightNumber { get; set; }
    }
}