添加项目文件。
This commit is contained in:
32
OrpaonEMS.App/Models/EleMeterActionValue.cs
Normal file
32
OrpaonEMS.App/Models/EleMeterActionValue.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OrpaonEMS.App.Models
|
||||
{
|
||||
public class EleMeterActionValue
|
||||
{
|
||||
/// <summary>
|
||||
/// 上限值
|
||||
/// </summary>
|
||||
public double UpValue { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// 中间值
|
||||
///// </summary>
|
||||
//public double MidValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下限值
|
||||
/// </summary>
|
||||
public double DownValue { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 目标值
|
||||
/// </summary>
|
||||
public double TargetValue { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user