2025-04-24 23:39:39 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.Common.Consts
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2025-04-27 09:40:31 +08:00
|
|
|
|
/// T645-2007报文项编码
|
2025-04-24 23:39:39 +08:00
|
|
|
|
/// </summary>
|
2025-04-25 17:18:59 +08:00
|
|
|
|
public class T6452007PacketItemCodeConst
|
2025-04-24 23:39:39 +08:00
|
|
|
|
{
|
2025-04-25 12:01:15 +08:00
|
|
|
|
#region 下行报文编码
|
2025-04-24 23:39:39 +08:00
|
|
|
|
#region 跳合闸、报警、保电
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 跳闸
|
|
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C011A = "1C_01_1A";
|
2025-04-24 23:39:39 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-05-15 11:23:08 +08:00
|
|
|
|
/// 合闸允许
|
2025-04-24 23:39:39 +08:00
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C011B = "1C_01_1B";
|
2025-04-24 23:39:39 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-05-15 11:23:08 +08:00
|
|
|
|
/// 合闸
|
2025-04-24 23:39:39 +08:00
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C011C = "1C_01_1C";
|
2025-05-15 11:23:08 +08:00
|
|
|
|
|
2025-04-24 23:39:39 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 触发报警
|
|
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C021A = "1C_01_2A";
|
2025-04-24 23:39:39 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 报警解除
|
|
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C012B = "1C_01_2B";
|
2025-04-24 23:39:39 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 保电开始
|
|
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C033A = "1C_03_3A";
|
2025-04-24 23:39:39 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 保电结束
|
|
|
|
|
|
/// </summary>
|
2025-05-14 17:41:39 +08:00
|
|
|
|
public const string C1C033B = "1C_03_3B";
|
2025-04-24 23:39:39 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region 广播校时
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 广播校时
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string C08 = "08";
|
|
|
|
|
|
#endregion
|
2025-04-25 12:01:15 +08:00
|
|
|
|
#endregion
|
2025-04-24 23:39:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|