using CollaborativePlatformMain.DFEntity;
using DFBIM.CADNETCommon.XmlConfig;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CollaborativePlatformMain.CADStartUtil
{
///
///
/// 文件名(File Name): FloorDataConfigUtil.cs
///
/// 描述(Description): 楼层数据config文件
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月8日11:10:37
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class FloorDataConfigUtil: XmlConfigBase
{
public override object InitConfig()
{
return new ObservableCollection>();
}
public override void SetConfigFile()
{
ConfigFile = "FloorLayerData.config";
}
ObservableCollection> info;
public ObservableCollection> Info
{
get { return info == null ? info = new ObservableCollection>() : info; }
set { info = value; }
}
}
///
///
/// 文件名(File Name): OpenDrawConfigUtil.cs
///
/// 描述(Description): 打开图纸
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月8日11:10:37
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class OpenDrawConfigUtil : XmlConfigBase
{
public override object InitConfig()
{
return new ObservableCollection();
}
public override void SetConfigFile()
{
ConfigFile = "OpenDrawPathData.config";
}
ObservableCollection info;
public ObservableCollection Info
{
get { return info == null ? info = new ObservableCollection() : info; }
set { info = value; }
}
}
///
///
/// 文件名(File Name): OpenDrawConfigUtil.cs
///
/// 描述(Description): 打开图纸
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月8日11:10:37
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class TwoOpenCADConfigUtil : XmlConfigBase
{
public override object InitConfig()
{
return new ObservableCollection();
}
public override void SetConfigFile()
{
ConfigFile = "CMTwoOpenCAD.config";
}
ObservableCollection info;
public ObservableCollection Info
{
get { return info == null ? info = new ObservableCollection() : info; }
set { info = value; }
}
}
///
///
/// 文件名(File Name): WholePictureDataConfigUtil.cs
///
/// 描述(Description): 整图地址Config
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月8日11:10:37
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class WholePictureDataConfigUtil : XmlConfigBase
{
public override object InitConfig()
{
return new ObservableCollection();
}
public override void SetConfigFile()
{
ConfigFile = "WholePicture.config";
}
ObservableCollection info;
public ObservableCollection Info
{
get { return info == null ? info = new ObservableCollection() : info; }
set { info = value; }
}
}
}