mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
19 lines
405 B
C#
19 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar.TDengine
|
|
{
|
|
public class STable
|
|
{
|
|
[SugarColumn(IsIgnore =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; }
|
|
}
|
|
}
|