Files
SecMPS/api_sqlsugar/VolPro.Entity/DomainModels/Warehouse/warehouse_realtimealert.cs
2026-05-15 23:22:48 +08:00

113 lines
3.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*如果数据库字段发生变化请在代码生器重新生成此Model
*/
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using VolPro.Entity.SystemModels;
namespace VolPro.Entity.DomainModels
{
[Entity(TableCnName = "实时告警",TableName = "warehouse_realtimealert",DBServer = "ServiceDbContext")]
public partial class warehouse_realtimealert:ServiceEntity
{
/// <summary>
///实时告警ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Key]
[Display(Name ="实时告警ID")]
[Column(TypeName="int")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public int RealTimeAlertID { get; set; }
/// <summary>
///告警信息
/// </summary>
[Display(Name ="告警信息")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public string Message { get; set; }
/// <summary>
///告警图片
/// </summary>
[Display(Name ="告警图片")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string Picture { get; set; }
/// <summary>
///告警原始图片
/// </summary>
[Display(Name ="告警原始图片")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string OriginPic { get; set; }
/// <summary>
///人脸小图
/// </summary>
[Display(Name ="人脸小图")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string FacePic { get; set; }
/// <summary>
///人体小图
/// </summary>
[Display(Name ="人体小图")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string BodyPic { get; set; }
/// <summary>
///告警视频
/// </summary>
[Display(Name ="告警视频")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string Video { get; set; }
/// <summary>
///推送数据大类
/// </summary>
[Display(Name ="推送数据大类")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string RealTimeAlertType { get; set; }
/// <summary>
///告警数据JSON字符串
/// </summary>
[Display(Name ="告警数据JSON字符串")]
[Column(TypeName="nvarchar(max)")]
[Editable(true)]
public string RealTimeAlertData { get; set; }
/// <summary>
///发生时间
/// </summary>
[Display(Name ="发生时间")]
[Column(TypeName="datetime")]
[Editable(true)]
public DateTime? CreateDate { get; set; }
}
}