TDengineBaseEntity.cs 468 B

1234567891011121314151617181920
  1. using System;
  2. using SqlSugar;
  3. using SqlSugar.TDengine;
  4. namespace WCS.FJ.Protocol
  5. {
  6. /// <summary>
  7. /// 时序数据库TDengine基础实体
  8. /// </summary>
  9. public class TDengineBaseEntity : STable
  10. {
  11. [SugarColumn(IsPrimaryKey = true, InsertServerTime = true)]
  12. public DateTime Frame { get; set; }
  13. public string Code { get; set; }
  14. [SugarColumn(IsIgnore = true)]
  15. public string CreateSql { get; set; }
  16. }
  17. }