36 lines
865 B
C#
36 lines
865 B
C#
using YunDa.ISAS.DataTransferObject.DataMonitoring.TelecommandConfigurationDto;
|
|
|
|
namespace Yunda.ISAS.DataMonitoringServer.DataAnalysis.Model
|
|
{
|
|
public class TelecommandModel : TelecommandConfigurationProperty
|
|
{
|
|
/// <summary>
|
|
/// 遥控值
|
|
/// </summary>
|
|
private int commandValue;
|
|
/// <summary>
|
|
/// 遥控值
|
|
/// </summary>
|
|
public int CommandValue
|
|
{
|
|
get
|
|
{
|
|
return commandValue;
|
|
}
|
|
set
|
|
{
|
|
commandValue = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 遥控来源
|
|
/// </summary>
|
|
public virtual string Source { get; set; }
|
|
|
|
/// <summary>
|
|
/// 遥控命令发出者
|
|
/// </summary>
|
|
public virtual string Sender { get; set; }
|
|
}
|
|
} |