10 lines
171 B
C#
10 lines
171 B
C#
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.Model.Systems.DataBase;
|
|||
|
|
|
|||
|
|
public class DatabaseOutput
|
|||
|
|
{
|
|||
|
|
public string ConfigId { get; set; }
|
|||
|
|
|
|||
|
|
public DbType DbType { get; set; }
|
|||
|
|
}
|