Files
SqlSugar/Src/Asp.NetCore2/SqlSugar/ExpressionsToSql/Common/NewExpressionInfo.cs
2022-09-10 21:19:05 +08:00

18 lines
423 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
internal class NewExpressionInfo
{
public string LeftNameName { get; set; }
public string RightName { get; set; }
public string RightDbName { get; set; }
public string ShortName { get; set; }
public string Type { get; set; }
}
}