PropertyOrderAttribute.cs 408 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CZFW.Framework.Attributes
  5. {
  6. /// <summary>
  7. /// 用于控制对象内字段显示的先后顺序
  8. /// </summary>
  9. public class PropertyOrderAttribute:Attribute
  10. {
  11. public int Order { get; set; } = 11;
  12. public PropertyOrderAttribute(int order)
  13. {
  14. Order = order;
  15. }
  16. }
  17. }