using SqlSugar;
using System;
namespace CompressorXN_Model
{
///
/// 参数项点位表
///
[SugarTable("t_para_plc_point")]
public class T_ParaPlcPoint
{
public T_ParaPlcPoint()
{
Id = Guid.NewGuid().ToString();
}
///
/// 主键
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 参数类型
///
[SugarColumn(ColumnName = "para_type")]
public string ParaType { get; set; }
///
/// 参数名称
///
[SugarColumn(ColumnName = "para_name")]
public string ParaName { get; set; }
///
/// 目标值地址
///
[SugarColumn(ColumnName = "target_address")]
public string TargetAddress { get; set; }
///
/// 下限值地址
///
[SugarColumn(ColumnName = "min_address")]
public string MinAddress { get; set; }
///
/// 上限值地址
///
[SugarColumn(ColumnName = "max_address")]
public string MaxAddress { get; set; }
///
/// 是否检查地址
///
[SugarColumn(ColumnName = "check_address")]
public string CheckAddress { get; set; }
}
}