using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeSql.Tests.QuestDb.Utils
{
///
/// 测试方法的执行顺序
///
[AttributeUsage(AttributeTargets.Method)]
public class OrderAttribute : Attribute
{
///
/// 顺序
///
public int Sort
{
get; set;
}
public OrderAttribute(int sort)
{
this.Sort = sort;
}
}
}