添加项目文件。

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,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.Core.Enums
{
/// <summary>
/// 储能当前的指令状态
/// 只是标记指令的状态
/// </summary>
public enum EnergyStoryageCmdState
{
/// <summary>
/// 无指令中
/// </summary>
NoCmd = 15,
/// <summary>
/// 待机指令
/// </summary>
Standby = 12,
/// <summary>
/// 充电指令中
/// </summary>
ChargeValue = 1,
/// <summary>
/// 放电指令中
/// </summary>
DischargeValue = 2,
/// <summary>
/// 全功率充电指令中
/// </summary>
FullCharge = 3,
/// <summary>
/// 全功率放电指令中
/// </summary>
FullDischarge = 4,
}
}