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.Platform;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.Plugin.DataLoad.Model
|
|
|
|
|
{
|
|
|
|
|
public class FieldMapping
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目标字段名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string T_FieldName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目标字段索引
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int T_FieldIndex { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 源字段名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string S_FieldName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 源字段索引
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int S_FieldIndex { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字段集合
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<DataDicTionary> FieldList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|