mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-01-24 13:52:11 +08:00
13 lines
261 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|