using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformMain.DFEntity { /// /// /// 文件名(File Name): FloorLayerData.cs /// /// 描述(Description): 楼层管理器数据 /// /// 数据表(Tables): nothing /// /// 作者(Author): Ou Rui Song /// /// 日期(Create Date): 2024年4月30日15:55:58 /// /// 修改记录(Revision History): /// R1: /// 修改作者: /// 修改日期: /// 修改理由: /// /// [Serializable] public class FloorLayerData { public FloorLayerData() { } /// /// 图层管理器 /// /// public FloorLayerData(string layerName) { LayerName = layerName; } /// /// 楼层管理器 /// /// /// /// public FloorLayerData(string floorName, string dWGPath, List subDatas) { FloorName = floorName; SubDatas = subDatas; } /// /// 楼层名称 /// public string FloorName { get; set; } /// /// 图纸地址 /// public string DWGPath { get; set; } /// /// 图层数据 /// public List SubDatas { get; set; } = new List(); /// /// 图层名 /// public string LayerName { get; set; } } }