using SqlSugar;
namespace DS.WMS.Core.OpenApiModule.Entity;
///
///
///
[SugarTable("tb_HKEventDetail")]
public partial class tb_HKEventDetail
{
public tb_HKEventDetail()
{
}
///
///
///
public Guid EventId { get; set; }
///
///
///
[SugarColumn(IsPrimaryKey = true)]
public Guid EventDetailId { get; set; }
///
/// 事件类别
///
public string Ability { get; set; }
///
/// 事件类型
///
public int? EventType { get; set; }
///
/// 事件源ID
///
public Guid? EventOriginalId { get; set; }
///
/// 事件源编号
///
public string SrcIndex { get; set; }
///
/// 事件源名称
///
public string SrcName { get; set; }
///
/// 事件源类型
///
public string SrcType { get; set; }
///
///
///
public string Remark { get; set; }
///
/// 区域编号
///
public string RegionIndexCode { get; set; }
///
/// 根节点/热成像/热成像2组
///
public string RegionName { get; set; }
///
/// 位置名称
///
public string LocationName { get; set; }
///
/// 位置编号
///
public string LocationIndexCode { get; set; }
///
/// 关联ID
///
public Guid? RelationId { get; set; }
}