using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Exports
{
///
/// 基本类型数据属性类
///
public class ExportExcelProperty
{
///
/// 标题
///
public string Caption { get; set; }
///
/// 实体的属性名称
///
public string EntityProp { get; set; }
///
/// 合并字段的分隔符号,默认为空字符串
///
public string JoinPropChar { get; set; }
public ExportExcelProperty()
{
JoinPropChar = "";
}
}
}