using IStation.Model; using IStation.Model.Bimface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static IStation.Model.BimfaceFile; namespace IStation.Application { /// /// /// public class UpdateBimfaceFileInput { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// Bimface平台标识 /// public long BimfaceID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 模型类型 /// public eModelType ModelType { get; set; } /// /// 文件状态 /// public eFileStatus FileStatus { get; set; } /// /// 文件大小 /// public string FileSize { get; set; } /// /// 文件格式 /// public eFormatType FormatType { get; set; } /// /// 文件后缀 /// public string FileSuffix { get; set; } /// /// 存储URL 为空标识BIMFACE服务器 /// public string StorageUrl { get; set; } /// /// 设置 /// public FileSettingsModel Settings { get; set; } /// /// 标签名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }