sqlsugar/Src/Asp.Net/SqlSugar/Json2Sql/Provider/Queryable/Entities.cs

16 lines
368 B
C#
Raw Permalink Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar
{
internal class JsonQueryableProvider_TableInfo
{
public string Table { get; set; }
public string ShortName { get; set; }
public bool IsMaster { get; set; }
public bool IsJoin { get; set; }
public int Index { get; set; }
}
}