ScreentEntity.cs 701 B

1234567891011121314151617181920212223
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace AI.Platform.Core.Entity.Device
  6. {
  7. [SugarTable(null,"设备表")]
  8. public class ScreentEntity: EntityBaseLite
  9. {
  10. [SugarColumn(ColumnDescription = "站点id")]
  11. public long SiteId { get; set; }
  12. [SugarColumn(ColumnDescription = "设备SN", IsNullable = false)]
  13. public string sn { get; set; }
  14. [SugarColumn(ColumnDescription = "修改时间", IsNullable = false)]
  15. public DateTime EditTime { get; set; }
  16. [SugarColumn(ColumnDescription = "备注", IsNullable = false)]
  17. public string? Remark { get; set; }
  18. }
  19. }