using KGIS.Framework.Utils.Model; namespace Kingo.Plugin.YJJK.Interface { public interface IVCTExport { /// /// 输出路径 /// string OutPath { get; set; } /// /// 比例尺 /// ScaleCodeTable Scale { get; set; } /// /// 导出报表 /// /// 是否包含坡度图 void ExportVCT(bool haspdt,string sTheMDBPath = ""); } }