年度变更建库软件5.0版本
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.

30 lines
598 B

4 months ago
namespace Kingo.Plugin.YJJK.ModelEntity
{
/// <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; }
}
}
}