using System; using SqlSugar; using SqlSugar.TDengine; namespace WCS.Entity { /// /// 时序数据库TDengine基础实体 /// public class TDengineBaseEntity : STable { [SugarColumn(IsPrimaryKey = true, InsertServerTime = true)] public DateTime Frame { get; set; } public string Code { get; set; } [SugarColumn(IsIgnore = true)] public string CreateSql { get; set; } } }