using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
[SugarTable("excel_importfileds")]
public class ExcelImportFileds
{
#region 实体成员
///
/// 导入模板Id
///
public string ImportId { get; set; }
///
/// 字段名字
///
public string Name { get; set; }
///
/// excel名字
///
public string ColName { get; set; }
///
/// 字段类型
///
public string CsType { get; set; }
///
/// 唯一性验证:0要,1需要
///
public int? OnlyOne { get; set; }
///
/// 关联类型0:无关联,1:GUID,2:数据字典3:数据表;4:固定数值;5:操作人ID;6:操作人名字;7:操作时间;
///
public int? RelationType { get; set; }
///
/// 数据字典编号
///
public string DataItemCode { get; set; }
///
/// 固定数据
///
public string Value { get; set; }
///
/// 关联数据源
///
public string DSourceId { get; set; }
///
/// 关联数据源导入对应字段
///
public string DSourceExcelId { get; set; }
///
/// 关联数据源保存字段
///
public string DSourceDBId { get; set; }
///
/// 排序
///
public int? SortCode { get; set; }
#endregion
}
}