19 lines
314 B
C#
19 lines
314 B
C#
|
|
namespace ExcelHelper.Model
|
|||
|
|
{
|
|||
|
|
public class TableColumnModel
|
|||
|
|
{
|
|||
|
|
public string ExcelColumnName
|
|||
|
|
{
|
|||
|
|
get; set;
|
|||
|
|
}
|
|||
|
|
public string TableColumnName
|
|||
|
|
{
|
|||
|
|
get; set;
|
|||
|
|
}
|
|||
|
|
public string DataType
|
|||
|
|
{
|
|||
|
|
get; set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|