29 lines
607 B
C#
29 lines
607 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.CollectBus.Common.AttributeInfo
|
|
{
|
|
/// <summary>
|
|
/// 排序序号
|
|
/// </summary>
|
|
public class NumericalOrderAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序序号
|
|
/// </summary>
|
|
/// <param name="index"></param>
|
|
public NumericalOrderAttribute(int index)
|
|
{
|
|
Index = index;
|
|
}
|
|
}
|
|
}
|