ScreentEntity.cs 452 B

1234567891011121314151617
  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. }
  15. }