You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
753 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.ExcelModule.Model
{
/// <summary>
/// 用户自定义列设置
/// </summary>
public class UserColumnSet
{
/// <summary>
/// 列头显示文字
/// </summary>
public string Title { get; set; }
/// <summary>
/// 列头显示文字- 英文
/// </summary>
public string EnTitle { get; set; }
/// <summary>
/// 数据索引
/// </summary>
public string DataIndex { get; set; }
/// <summary>
/// 是否可见
/// </summary>
public bool Visible { get; set; }
}
}