TG.WXCRM.V4/Model/MAP/BAS_EXCELIMPORTDICT.cs

19 lines
428 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
public partial class BAS_EXCELIMPORTDICT
{
/// <summary>
/// 列索引
/// </summary>
[NotMapped]
public int ColumnIndex { get; set; }
public BAS_EXCELIMPORTDICT()
{
this.ColumnIndex = -1;//默认为-1索引为-1是找不到excel对应的列
}
}
}