You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
603 B
29 lines
603 B
namespace Kingo.Plugin.BGResultManager.Model |
|
{ |
|
/// <summary> |
|
/// 导出excel列实体 |
|
/// </summary> |
|
public class SheetColumnEntity |
|
{ |
|
private string columnname; |
|
/// <summary> |
|
/// 列名 |
|
/// </summary> |
|
public string ColumnName |
|
{ |
|
get { return columnname; } |
|
set { columnname = value; } |
|
} |
|
|
|
private int index; |
|
/// <summary> |
|
/// 索引 |
|
/// </summary> |
|
public int Index |
|
{ |
|
get { return index; } |
|
set { index = value; } |
|
} |
|
|
|
} |
|
}
|
|
|