SqlSugar/SqlSugar/Enum/ApplyType.cs
sunkaixuan 3363b2aa91 Ok
2017-01-07 21:54:51 +08:00

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
}
}