using SqlSugar;
using System;
namespace Sugar.Enties
{
///
///
///
[SugarTable("AlarmInfoPlateLog")]
public partial class AlarmInfoPlateLog
{
public AlarmInfoPlateLog()
{
}
///
/// Desc:自动序号
/// Default:
/// Nullable:False
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int autoid { get; set; }
///
/// Desc:车辆推送信息
/// Default:
/// Nullable:True
///
public string PlateInfo { get; set; }
///
/// Desc:时间日期
/// Default:
/// Nullable:True
///
public DateTime date { get; set; }
}
}