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