添加项目文件。
This commit is contained in:
46
OrpaonEMS.App/Models/AnalysisModel/CoolAnalyse.cs
Normal file
46
OrpaonEMS.App/Models/AnalysisModel/CoolAnalyse.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
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 CoolAnalyse : BindableBase
|
||||
{
|
||||
private int _DayActionCount;
|
||||
/// <summary>
|
||||
/// 液冷 今日动作次数
|
||||
/// </summary>
|
||||
public int DayActionCount
|
||||
{
|
||||
get { return _DayActionCount; }
|
||||
set { _DayActionCount = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private double _DayRunTime;
|
||||
/// <summary>
|
||||
/// 液冷 今日运行时长 分钟
|
||||
/// </summary>
|
||||
public double DayRunTime
|
||||
{
|
||||
get { return _DayRunTime; }
|
||||
set { _DayRunTime = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
|
||||
private double _DayPw;
|
||||
/// <summary>
|
||||
/// 液冷 今日耗电量 kWh
|
||||
/// </summary>
|
||||
public double DayPw
|
||||
{
|
||||
get { return _DayPw; }
|
||||
set { _DayPw = value; RaisePropertyChanged(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user