mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
14 lines
188 B
C#
14 lines
188 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public enum ApplyType
|
|
{
|
|
Cross = 1,
|
|
Outer = 2
|
|
}
|
|
}
|