| | |
| | | public string DbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 锁定 |
| | | /// </summary> |
| | | [Category("基础信息")] |
| | | [DisplayName("锁定")] |
| | | [PropertyOrder(7)] |
| | | [Browsable(true)] |
| | | public bool DbLocked { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 标签 |
| | | /// </summary> |
| | | [Category("基础信息")] |
| | | [DisplayName("标签")] |
| | | [PropertyOrder(7)] |
| | | [PropertyOrder(8)] |
| | | [Browsable(true)] |
| | | public List<string> Flags { get; set; } |
| | | |
| | |
| | | /// </summary> |
| | | [Category("基础信息")] |
| | | [DisplayName("说明")] |
| | | [PropertyOrder(8)] |
| | | [PropertyOrder(9)] |
| | | [MultiText] |
| | | [Browsable(true)] |
| | | public string Description { get; set; } |
| | |
| | | this.Name = rhs.Name; |
| | | this.Code = rhs.Code; |
| | | this.ModelType = rhs.ModelType; |
| | | this.DbId = rhs.DbId; |
| | | this.DbLocked = rhs.DbLocked; |
| | | this.Flags = rhs.Flags?.ToList(); |
| | | this.Description = rhs.Description; |
| | | } |