namespace Yw.Entity { /// /// Bimface文件 /// [SugarTable("bimface_file")] public class BimfaceFile : BaseTraceEntity, System.ICloneable, ISorter, IParas, IFlags, ITagName { /// /// /// public BimfaceFile() { } /// /// /// public BimfaceFile(BimfaceFile rhs) : base(rhs) { this.BimfaceId = rhs.BimfaceId; this.Name = rhs.Name; this.ModelType = rhs.ModelType; this.FileStatus = rhs.FileStatus; this.FileSize = rhs.FileSize; this.FormatType = rhs.FormatType; this.FileSuffix = rhs.FileSuffix; this.StorageUrl = rhs.StorageUrl; this.Content = rhs.Content; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.CreateUserName = rhs.CreateUserName; this.UpdateUserID = rhs.UpdateUserID; this.UpdateTime = rhs.UpdateTime; this.UpdateUserName = rhs.UpdateUserName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 平台id /// public string BimfaceId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 模型类型 /// public int ModelType { get; set; } /// /// 状态 /// public int FileStatus { get; set; } /// /// 大小 /// public string FileSize { get; set; } /// /// 格式类型 /// public int FormatType { get; set; } /// /// 后缀 /// public string FileSuffix { get; set; } /// /// 存储URL /// public string StorageUrl { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标记 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public BimfaceFile Clone() { return (BimfaceFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }