62 lines
1.8 KiB
C#
Raw Normal View History

2025-04-24 18:31:27 +08:00
/************************************************************************************
* Copyright (c) 2017 All Rights Reserved.
* CLR版本4.0.30319.42000
* JIAN
* MyCode.Project.Infrastructure.Imports
* ImportListProperty
* v1.0.0.0
* 7ee2c39b-a61c-4851-ae9f-67f24d552148
* JIAN
*
* jianxuanhuo1@126.com
* 2017/6/21 11:48:32
*
*
* =====================================================================
*
* 2017/6/21 11:48:32
*
* v1.0.0.0
*
*
/************************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Imports
{
/// <summary>
/// 子表数据导入
/// </summary>
public class ImportListProperty:ImportProperty
{
/// <summary>
/// 复杂属性的名称
/// </summary>
public string ComplexPropName { get; set; }
/// <summary>
/// 复杂属性的类型
/// </summary>
public Type ComplexPropType { get; set; }
/// <summary>
/// 子属性类型
/// </summary>
public ImportChildProperty ChildProperty { get; set; }
/// <summary>
/// 主表的主键字段,即唯一标记
/// </summary>
public string PrimaryKey { get; set; }
/// <summary>
/// 主表的主键字段在Excel中的标题即唯一标记
/// </summary>
public string PrimaryKeyCaption { get; set; }
}
}