| | |
| | | |
| | | namespace HStation.WinFrmUI.Xhs.Core |
| | | { |
| | | [TypeConverter(typeof(PropertySorter))] |
| | | public class XhsProjectPropertyGridViewModel |
| | | { |
| | | [TypeConverter(typeof(PropertySorter))] |
| | | public XhsProjectPropertyGridViewModel(XhsProjectDto rhs) |
| | | { |
| | | this.Address = rhs.Address; |
| | |
| | | /// </summary> |
| | | [DisplayName("名称")] |
| | | [Category("基本信息")] |
| | | [PropertyOrder(11)] |
| | | [PropertyOrder(-9)] |
| | | [Browsable(true)] |
| | | public string Name { get; set; } |
| | | |
| | |
| | | [DisplayName("项目编号")] |
| | | [Category("基本信息")] |
| | | [Browsable(true)] |
| | | [PropertyOrder(-9)] |
| | | [PropertyOrder(-10)] |
| | | public string ProjectNumber { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [DisplayName("创建人")] |
| | | [Category("基本信息")] |
| | | [PropertyOrder(-11)] |
| | | [PropertyOrder(-8)] |
| | | [Browsable(true)] |
| | | public string CreateName { get; set; } |
| | | |
| | |
| | | /// </summary> |
| | | [DisplayName("说明")] |
| | | [Category("基本信息")] |
| | | [PropertyOrder(-12)] |
| | | [PropertyOrder(10)] |
| | | [Browsable(true)] |
| | | public string Description { get; set; } |
| | | |
| | |
| | | /// </summary> |
| | | [DisplayName("地址")] |
| | | [Category("基本信息")] |
| | | [PropertyOrder(-13)] |
| | | [PropertyOrder(11)] |
| | | [Browsable(true)] |
| | | public string Address { get; set; } |
| | | } |