using KGIS.Framework.Utils; using System.Collections.Generic; using System.Xml.Serialization; namespace Kingo.Plugin.DTBJKLoadData.Model { /// /// /// public class MatchingRegionMapping { /// /// 源数据表名称 /// public string Name { get; set; } /// /// 属性名 /// public string PropertyName { get; set; } /// /// 排序 /// public int Order { get; set; } } /// /// /// public class MatchingRegion { /// /// 区域名称 /// public string RegionName { get; set; } /// /// 区域代码 /// public string RegionCode { get; set; } public MatchingRegion() { MatchingRegionItem = new List(); } public List MatchingRegionItem { get; set; } } }