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