22 lines
471 B
C#
22 lines
471 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.Enums
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 透明转发结果标志
|
|||
|
|
/// </summary>
|
|||
|
|
public enum TransparentForwardingFlagEnum
|
|||
|
|
{
|
|||
|
|
不能执行转发=0,
|
|||
|
|
转发接收超时=1,
|
|||
|
|
转发接收错误=2,
|
|||
|
|
转发接收确认=3,
|
|||
|
|
转发接收否认=4,
|
|||
|
|
转发接收数据=5
|
|||
|
|
}
|
|||
|
|
}
|