using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.Core.Enums
{
///
/// 削峰填谷 状态机使用
///
public enum ElePeakValley
{
///
/// 高峰模式
///
TopPeak = 1,
///
/// 峰模式
///
Peak = 2,
///
/// 谷模式
///
Valley = 3,
///
/// 平模式
///
Flat = 4,
///
/// 报警
///
Alarm = 5,
///
/// 初始状态
///
Initialize = 10
}
}