41 lines
928 B
C#
41 lines
928 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.Consts
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// T376.1-2012报文项编码
|
|||
|
|
/// </summary>
|
|||
|
|
public class T37612012PacketItemCodeConst
|
|||
|
|
{
|
|||
|
|
#region 非可配置的,下行报文编码管理,主要是数据库没有配置,但是需要读取的采集项
|
|||
|
|
|
|||
|
|
#region 读数据
|
|||
|
|
/// <summary>
|
|||
|
|
/// 透明转发
|
|||
|
|
/// </summary>
|
|||
|
|
public const string AFN10HFN01H = $"10_01";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 读取终端信息
|
|||
|
|
/// </summary>
|
|||
|
|
public const string AFN09HFN01H = $"09_01";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 远程通信模块版本信息
|
|||
|
|
/// </summary>
|
|||
|
|
public const string AFN09HFN09H = $"09_09";
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#region 写数据
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|