SqlSugar/Src/Asp.NetCore2/SqlSugar.TDengineCore/STable.cs

19 lines
443 B
C#
Raw Normal View History

2023-10-01 19:46:16 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.TDengine
{
public class STable
{
2023-11-10 14:16:42 +08:00
[SugarColumn(IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
public string TagsTypeId { get; set; }
public static List<ColumnTagInfo> Tags = null;
}
public class ColumnTagInfo
{
public string Name { get; set; }
public string Value { get; set; }
2023-10-01 19:46:16 +08:00
}
}