using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NEIntelligentControl2.Models.Windturbine
{
///
/// 控制指令
///
public class ControlInstruction
{
///
/// 风机编号
///
public string WindturbineId { get; set; }
///
/// 场站编号
///
public string StationId { get; set; }
///
/// 项目编号
///
public string ProjectId { get; set; }
///
/// 风机型号
///
public string ModelId { get; set; }
///
/// 操作
///
public OperateStyle ControlType { get; set; }
///
/// 挂牌类型
///
public HungType LockType { get; set; }
///
/// 自定义挂牌内容
///
public string LockValue { get; set; }
///
/// 操作是否成功
///
public bool IsSuccess { get; set; }
///
/// 错误码
///
public string ErrorCode { get; set; }
}
}