33 lines
667 B
C#
33 lines
667 B
C#
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; }
|
|
}
|
|
}
|