using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.Module.ExcelModule.Model { /// /// 按自定义列导出Excel /// public class ExportByColumnReq { /// /// 用户自定义列设置 /// public List ColumnSets { get; set; } /// /// Json数据 /// public string JsonDataStr { get; set; } } }