duheng
2024-07-17 88cf57f64ac1f846eaa62213db07a21f2532b5bb
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-ViewModel/XhsProject/XhsProjectPropertyGridViewModel.cs
@@ -4,9 +4,9 @@
namespace HStation.WinFrmUI.Xhs.Core
{
    [TypeConverter(typeof(PropertySorter))]
    public class XhsProjectPropertyGridViewModel
    {
        [TypeConverter(typeof(PropertySorter))]
        public XhsProjectPropertyGridViewModel(XhsProjectDto rhs)
        {
            this.Address = rhs.Address;
@@ -22,7 +22,7 @@
        /// </summary>
        [DisplayName("名称")]
        [Category("基本信息")]
        [PropertyOrder(11)]
        [PropertyOrder(-9)]
        [Browsable(true)]
        public string Name { get; set; }
@@ -32,7 +32,7 @@
        [DisplayName("项目编号")]
        [Category("基本信息")]
        [Browsable(true)]
        [PropertyOrder(-9)]
        [PropertyOrder(-10)]
        public string ProjectNumber { get; set; }
        /// <summary>
@@ -49,7 +49,7 @@
        /// </summary>
        [DisplayName("创建人")]
        [Category("基本信息")]
        [PropertyOrder(-11)]
        [PropertyOrder(-8)]
        [Browsable(true)]
        public string CreateName { get; set; }
@@ -58,7 +58,7 @@
        /// </summary>
        [DisplayName("说明")]
        [Category("基本信息")]
        [PropertyOrder(-12)]
        [PropertyOrder(10)]
        [Browsable(true)]
        public string Description { get; set; }
@@ -67,7 +67,7 @@
        /// </summary>
        [DisplayName("地址")]
        [Category("基本信息")]
        [PropertyOrder(-13)]
        [PropertyOrder(11)]
        [Browsable(true)]
        public string Address { get; set; }
    }