添加项目文件。

This commit is contained in:
2025-02-28 22:23:13 +08:00
parent d4ad2fe2de
commit 547a1b3bf6
416 changed files with 72830 additions and 0 deletions

View File

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