12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZFW.Framework.Attributes
- {
- /// <summary>
- /// 用于控制对象内字段显示的先后顺序
- /// </summary>
- public class PropertyOrderAttribute:Attribute
- {
- public int Order { get; set; } = 11;
- public PropertyOrderAttribute(int order)
- {
- Order = order;
- }
- }
- }
|