76 lines
1.8 KiB
C#
76 lines
1.8 KiB
C#
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.Models
|
|
{
|
|
/// <summary>
|
|
/// 光伏 统计信息
|
|
/// </summary>
|
|
public class SolarAnalyse : BindableBase
|
|
{
|
|
/// <summary>
|
|
/// 一天的开始0时发电量数据
|
|
/// </summary>
|
|
public double DayStartPointPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月份的开始0时发电量数据
|
|
/// </summary>
|
|
public double MonthStartPointPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年的开始0时发电量数据
|
|
/// </summary>
|
|
public double YearStartPointPw { get; set; }
|
|
|
|
|
|
|
|
|
|
private double _DayChargPw;
|
|
/// <summary>
|
|
/// 光伏 光伏日发电量 kWh
|
|
/// </summary>
|
|
public double DayChargPw
|
|
{
|
|
get { return _DayChargPw; }
|
|
set { _DayChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _MonthChargPw;
|
|
/// <summary>
|
|
/// 光伏 光伏月发电量 kWh
|
|
/// </summary>
|
|
public double MonthChargPw
|
|
{
|
|
get { return _MonthChargPw; }
|
|
set { _MonthChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _YearChargPw;
|
|
/// <summary>
|
|
/// 光伏 光伏年发电量 kWh
|
|
/// </summary>
|
|
public double YearChargPw
|
|
{
|
|
get { return _YearChargPw; }
|
|
set { _YearChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
private double _TotalChargPw;
|
|
/// <summary>
|
|
/// 光伏 光伏总发电量 kWh
|
|
/// </summary>
|
|
public double TotalChargPw
|
|
{
|
|
get { return _TotalChargPw; }
|
|
set { _TotalChargPw = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
|
|
}
|
|
}
|