mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-25 09:29:53 +08:00
22 lines
502 B
C#
22 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class SubInsertTree
|
|
{
|
|
public object Expression { get; set; }
|
|
public List<SubInsertTree> ChildExpression { get; set; }
|
|
}
|
|
|
|
internal class SubInsertTreeExpression
|
|
{
|
|
public Expression Expression { get; set; }
|
|
public List<SubInsertTreeExpression> Childs { get; set; }
|
|
}
|
|
}
|