You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
using ESRI.ArcGIS.Geodatabase; |
|
using KGIS.Framework.Maps; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Collections.ObjectModel; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.PluginServiceInterface.Model |
|
{ |
|
public class IDGParameter |
|
{ |
|
public bool AllowUnion { get; set; } |
|
public bool AutoCalcGDKCSX { get; set; } |
|
public bool AutoSetGDLX { get; set; } |
|
public bool AllowPDFZ { get; set; } |
|
public string StrProjInfo { get; set; } |
|
public bool ExeDLTB { get; set; } |
|
public bool ExeGDDB { get; set; } |
|
public bool ExeCJDCQ { get; set; } |
|
public bool ExeXZQ { get; set; } |
|
public bool ExeCZC { get; set; } |
|
public bool ExeZLHZ { get; set; } |
|
public string CheckType { get; set; } |
|
public ProjectInfo PrjInfo { get; set; } |
|
[System.Xml.Serialization.XmlIgnore] |
|
public Dictionary<string, decimal> KCXSDic { get; set; } |
|
|
|
public string OutLocation { get; set; } |
|
public string TempdbPath { get; set; } |
|
public string PrjDbPath { get; set; } |
|
[System.Xml.Serialization.XmlIgnore] |
|
public List<IWizardFramework> ExtParam { get; set; } |
|
|
|
} |
|
public class IDGParameter3 |
|
{ |
|
/// <summary> |
|
/// 基础数据库路径 |
|
/// </summary> |
|
public string JcDbPath { get; set; } |
|
/// <summary> |
|
/// 变更数据库路径 |
|
/// </summary> |
|
public string BgDbPath { get; set; } |
|
/// <summary> |
|
/// 增量数据库路径 |
|
/// </summary> |
|
public string ZLDbPath { get; set; } |
|
/// <summary> |
|
/// 年末数据库路径 |
|
/// </summary> |
|
public string NmDbPath { get; set; } |
|
public string XZQDM { get; set; } |
|
public string ProjDir { get; set; } |
|
public bool ExeDLTB { get; set; } |
|
public bool ExeGDDB { get; set; } |
|
public bool ExeCJDCQ { get; set; } |
|
public bool ExeXZQ { get; set; } |
|
public bool ExeCZC { get; set; } |
|
public bool ExeZLHZ { get; set; } |
|
public ObservableCollection<ZLXXInfo> ListZLXXInfo { get; set; } |
|
[System.Xml.Serialization.XmlIgnore] |
|
public Dictionary<string, decimal> KCXSDic { get; set; } |
|
public IDGParameter3() |
|
{ |
|
ListZLXXInfo = new ObservableCollection<ZLXXInfo>(); |
|
KCXSDic = new Dictionary<string, decimal>(); |
|
} |
|
} |
|
|
|
|
|
}
|
|
|