using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.App.Models { /// /// 储能分析 /// 总充电量和总放电量通过PCS统计 /// 在储能柜体中加装电表的可以使用这个统计数据信息 /// public class EsAnalyse : BindableBase { /// /// 一天的开始0时充电量数据 /// public double DayStartPointChargPw { get; set; } /// /// 一天的开始0时放电量数据 /// public double DayStartPointDisChargPw { get; set; } /// /// 月度的开始1号充电量数据 /// public double MonthStartPointChargPw { get; set; } /// /// 月度的开始1号充电量数据 /// public double MonthStartPointDisChargPw { get; set; } /// /// 年的开始1号充电量数据 /// public double YearStartPointChargPw { get; set; } /// /// 年的开始1号充电量数据 /// public double YearStartPointDisChargPw { get; set; } /// /// ////////////////////////////////////收益数据//////////////////////////////////////////// /// private int _DayRevenue; /// /// 储能 今日收益 /// public int DayRevenue { get { return _DayRevenue; } set { _DayRevenue = value; RaisePropertyChanged(); } } private int _MonthRevenue; /// /// 储能 本月收益 /// public int MonthRevenue { get { return _MonthRevenue; } set { _MonthRevenue = value; RaisePropertyChanged(); } } private int _TotalRevenue; /// /// 储能 累计收益 /// public int TotalRevenue { get { return _TotalRevenue; } set { _TotalRevenue = value; RaisePropertyChanged(); } } /// /// ////////////////////////////////////储能充电量//////////////////////////////////////////// /// private double _DayChargPw; /// /// 储能 日充电量 kWh /// public double DayChargPw { get { return _DayChargPw; } set { _DayChargPw = value; RaisePropertyChanged(); } } private double _MonthChargPw; /// /// 储能 月充电量 kWh /// public double MonthChargPw { get { return _MonthChargPw; } set { _MonthChargPw = value; RaisePropertyChanged(); } } private double _YearChargPw; /// /// 储能 年充电量 kWh /// public double YearChargPw { get { return _YearChargPw; } set { _YearChargPw = value; RaisePropertyChanged(); } } private double _TotalChargPw; /// /// 储能 总充电量 kWh /// public double TotalChargPw { get { return _TotalChargPw; } set { _TotalChargPw = value; RaisePropertyChanged(); } } /// /// ////////////////////////////////////储能放电量//////////////////////////////////////////// /// private double _DayDisChargPw; /// /// 储能 日放电量 kWh /// public double DayDisChargPw { get { return _DayDisChargPw; } set { _DayDisChargPw = value; RaisePropertyChanged(); } } private double _MonthDisChargPw; /// /// 储能 月放电量 kWh /// public double MonthDisChargPw { get { return _MonthDisChargPw; } set { _MonthDisChargPw = value; RaisePropertyChanged(); } } private double _YearDisChargPw; /// /// 储能 年放电量 kWh /// public double YearDisChargPw { get { return _YearDisChargPw; } set { _YearDisChargPw = value; RaisePropertyChanged(); } } private double _TotalDisChargPw; /// /// 储能 总放电量 kWh /// public double TotalDisChargPw { get { return _TotalDisChargPw; } set { _TotalDisChargPw = value; RaisePropertyChanged(); } } } }