| | |
| | | /// </summary> |
| | | public XhsProjectItemModel(XhsProjectItemModel rhs) : base(rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.NO = rhs.NO; |
| | | this.ProjectID = rhs.ProjectID; |
| | | this.BimfaceID = rhs.BimfaceID; |
| | | this.Name = rhs.Name; |
| | | this.Paras = rhs.Paras; |
| | | this.Flags = rhs.Flags; |
| | | this.TagName = rhs.TagName; |
| | | this.UploadStatus = rhs.UploadStatus; |
| | | this.UseStatus = rhs.UseStatus; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | |
| | | /// 项目ID |
| | | /// </summary> |
| | | public long ProjectID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 编号 |
| | | /// </summary> |
| | | public string NO { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 在BIMFACE中的ID |
| | |
| | | public int SortCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 上传状态 |
| | | /// </summary> |
| | | public eUploadStatus UploadStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 说明 |
| | | /// </summary> |
| | | public string Description { get; set; } |