using SqlSugar;
using System;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace DataEntity.Device
{
///
/// 设备位置表
///
[SugarTable("t_deviceposition")]
public partial class DevicePositionModel
{
///
/// 配置表主键ID
///
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 项目ID
///
[SugarColumn(ColumnName = "ProjectId")]
public string ProjectId { get; set; }
///
/// 控件ID
///
[SugarColumn(ColumnName = "ControlId")]
public string ControlId { get; set; }
///
/// 名称
///
[SugarColumn(ColumnName = "Name")]
public string Name { get; set; }
///
/// 设备上面位置(Y)
///
[SugarColumn(ColumnName = "DeviceTop")]
public double DeviceTop { get; set; }
///
/// 设备左边位置(X)
///
[SugarColumn(ColumnName = "DeviceLeft")]
public double DeviceLeft { get; set; }
/////
///// 设备ID
/////
//[SugarColumn(ColumnName = "EquipmentId")]
//public string EquipmentId { get; set; }
///
/// 修改人
///
[SugarColumn(ColumnName = "ModifyName")]
public string ModifyName { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "ModifyTime")]
public DateTime? ModifyTime { get; set; }
}
}