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

13 lines
246 B
C#
Raw Normal View History

2023-11-18 23:49:43 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.TDengine
{
public class STableAttribute:Attribute
{
public string Tags { get; set; }
2023-11-19 00:03:07 +08:00
public string STableName { get; set; }
2023-11-18 23:49:43 +08:00
}
}