27 lines
422 B
C#
27 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DH.Devices.Motion
|
|
{
|
|
|
|
public enum FuncRet
|
|
{
|
|
/// <summary>
|
|
/// 正常命令执行成功
|
|
/// </summary>
|
|
Function_Success = 0,
|
|
|
|
|
|
/// <summary>
|
|
/// 打开站点不成功
|
|
/// </summary>
|
|
|
|
ERR_Open_Station_Fail = -18,
|
|
|
|
}
|
|
|
|
}
|