AlarmInfoPlateLog.cs 856 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using SqlSugar;
  2. using System;
  3. namespace Sugar.Enties
  4. {
  5. ///<summary>
  6. ///
  7. ///</summary>
  8. [SugarTable("AlarmInfoPlateLog")]
  9. public partial class AlarmInfoPlateLog
  10. {
  11. public AlarmInfoPlateLog()
  12. {
  13. }
  14. /// <summary>
  15. /// Desc:自动序号
  16. /// Default:
  17. /// Nullable:False
  18. /// </summary>
  19. [SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
  20. public int autoid { get; set; }
  21. /// <summary>
  22. /// Desc:车辆推送信息
  23. /// Default:
  24. /// Nullable:True
  25. /// </summary>
  26. public string PlateInfo { get; set; }
  27. /// <summary>
  28. /// Desc:时间日期
  29. /// Default:
  30. /// Nullable:True
  31. /// </summary>
  32. public DateTime date { get; set; }
  33. }
  34. }