using HStation.Xhs; using Yw.Entity; namespace HStation.Model { /// /// 业务站 /// [SysType("xhs-projectitemmodel")] [SugarTable("xhs_projectitemmodel")] public class XhsProjectItemModel : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable { /// /// /// public XhsProjectItemModel() { } /// /// /// public XhsProjectItemModel(XhsProjectItemModel rhs) : base(rhs) { 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.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.UploadStatus = rhs.UploadStatus; this.Description = rhs.Description; this.Version = rhs.Version; } public void Reset(XhsProjectItemModel rhs) { this.ProjectID = rhs.ProjectID; this.BimfaceID = rhs.BimfaceID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.UploadStatus = rhs.UploadStatus; this.TagName = rhs.TagName; this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Description = rhs.Description; this.Version = rhs.Version; } /// /// 项目ID /// public long ProjectID { get; set; } /// /// 在BIMFACE中的ID /// public string BimfaceID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 使用状态 /// public int UseStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 上传状态 /// public eUploadStatus UploadStatus { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 版本 /// public int Version { get; set; } /// /// /// public XhsProjectItemModel Clone() { return (XhsProjectItemModel)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }