| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AssetsTankSeriesDto() { } |
| | | public AssetsTankSeriesDto() |
| | | { } |
| | | |
| | | /// <summary> |
| | | /// |
| | |
| | | this.ID=rhs.ID; |
| | | this.CatalogID=rhs.CatalogID; |
| | | this.Name=rhs.Name; |
| | | this.ParentIds = rhs.ParentIds?.ToList(); |
| | | this.ParentID = rhs.ParentIds.LastOrDefault(); |
| | | this.Paras = rhs.Paras == null ? null : new (rhs.Paras); |
| | | this.Flags = rhs.Flags?.ToList(); |
| | | this.TagName=rhs.TagName; |
| | |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 父级id列表(版本控制 |
| | | /// 父级id |
| | | ///</summary> |
| | | public List<long> ParentIds { get; set; } |
| | | [Required] |
| | | public long ParentID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数 |
| | |
| | | /// 说明 |
| | | ///</summary> |
| | | public string Description { get; set; } |
| | | |
| | | |
| | | } |
| | | } |
| | | |