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.

31 lines
681 B
C#

using DS.Module.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.ExcelModule.Model
{
/// <summary>
/// 导出Excel通用请求
/// </summary>
public class ExportExcelReq
{
/// <summary>
/// 请求路由Url
/// </summary>
public string Url { get; set; }
/// <summary>
/// 查询条件
/// </summary>
public PageRequest QueryRequest { get; set; }
/// <summary>
/// 用户自定义列设置
/// </summary>
public List<UserColumnSet> ColumnSets { get; set; }
}
}