18 lines
404 B
C#
18 lines
404 B
C#
|
|
namespace JiShe.CollectBus.EnergySystem.Dto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 阀控输入
|
|||
|
|
/// </summary>
|
|||
|
|
public class ValveControlOutput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// true: 成功,false:失败
|
|||
|
|
/// </summary>
|
|||
|
|
public bool ValidData { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备注(业务系统未使用)
|
|||
|
|
/// </summary>
|
|||
|
|
public string Remark { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|