using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static IStation.Model.BimfaceFileMapping; namespace IStation.Application { /// /// /// public class BimfaceFileMappingDto { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 所属类型 /// public string BelongType { get; set; } /// /// 所属标识 /// public long BelongID { get; set; } /// /// Bimface文件类型标识 /// public long BimfaceFileTypeID { get; set; } /// /// Bimface文件标识 /// public long BimfaceFileID { get; set; } /// /// 设置 /// public MappingSettingsModel Settings { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }