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