using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Sugar.Enties { /// /// /// [SugarTable("Response_AlarmInfoPlateLog")] public partial class Response_AlarmInfoPlateLog { public Response_AlarmInfoPlateLog() { } /// /// Desc:自动序号 /// Default: /// Nullable:False /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int autoid { get; set; } /// /// Desc:车牌 /// Default: /// Nullable:True /// public string vcarcode { get; set; } /// /// Desc:摄像设备序列号 /// Default: /// Nullable:True /// public string cdserialno { get; set; } /// /// Desc:信息 /// Default: /// Nullable:True /// public string msg { get; set; } /// /// Desc:返回至摄像设备信息 /// Default: /// Nullable:True /// public string Info { get; set; } /// /// Desc:时间日期 /// Default: /// Nullable:True /// public DateTime ddate { get; set; } } }