namespace CompressorXN_Model.ViewModel.Request
{
public class PlcPointVM
{
///
/// 主键
///
public string Id { get; set; }
public int SerialNumber { get; set; }
///
/// 点位编码
///
public string PointCode { get; set; }
///
/// 点位名称
///
public string PointName { get; set; }
///
/// 点位地址
///
public string PointAddress { get; set; }
///
/// 数据类型
///
public string PointDataType { get; set; }
///
/// 开始索引
///
public int StartIndex { get; set; }
///
/// 读取长度
///
public int ReadLen { get; set; }
///
/// 读写属性,1:只读;2:只写;3:读写
///
public string ReadOrWrite { get; set; }
///
/// 是否报警点位
///
public bool IsAlarm { get; set; }
///
/// 采集值
///
public string ReadValue { get; set; }
///
/// 排序索引
///
public int SortIndex { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}