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