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

13 lines
261 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
{
[SugarColumn(IsOnlyIgnoreInsert =true ,IsOnlyIgnoreUpdate =true)]
public string TagsTypeId { get; set; }
}
}