mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 12:33:44 +08:00
18 lines
423 B
C#
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; }
|
|
}
|
|
}
|