SqlSugar/Src/Asp.NetCore2/SqlSugar.TDengineCore/STable.cs
2023-10-01 19:46:16 +08:00

13 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.TDengine
{
public class STable
{
[SugarColumn(IsOnlyIgnoreInsert =true ,IsOnlyIgnoreUpdate =true)]
public string TagsTypeId { get; set; }
}
}