using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.App.Models
{
///
/// 光伏 统计信息
///
public class SolarAnalyse : BindableBase
{
///
/// 一天的开始0时发电量数据
///
public double DayStartPointPw { get; set; }
///
/// 月份的开始0时发电量数据
///
public double MonthStartPointPw { get; set; }
///
/// 年的开始0时发电量数据
///
public double YearStartPointPw { get; set; }
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(); }
}
}
}