using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Attributes
{
///
/// 排序序号
///
public class NumericalOrderAttribute : Attribute
{
///
/// 序号
///
public int Index { get; set; }
///
/// 排序序号
///
///
public NumericalOrderAttribute(int index)
{
Index = index;
}
}
}