using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.Model.Enums
{
///
/// 削峰填谷的状态
///
public enum ElePVEnum
{
///
/// 尖峰模式
///
[Description("尖峰模式")]
TopPeak = 1,
///
/// 峰模式
///
[Description("峰价模式")]
Peak = 2,
///
/// 谷模式
///
[Description("谷价模式")]
Valley = 3,
///
/// 平模式
///
[Description("平价模式")]
Flat = 4
}
}