using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { public class ParserExcelInfo { /// /// Sheet详情列表 /// public List sheetList { get; set; } /// /// sheet合计 /// public int totalSheet { get; set; } /// /// sheet名称组 /// public string[] sheetNameArgs { get; set; } /// /// 单元总数 /// public int totalCell { get; set; } } public class ParserSheetInfo { /// /// Sheet名称 /// public string sheetName { get; set; } /// /// 单元详情 /// public List cellList { get; set; } /// /// 列标题 /// public List colsList { get; set; } /// /// 主要保存解析的非Table内容,例如标题。 /// public List otherList { get; set; } /// /// 是否Table混合标题 /// public bool isMutipleTableCols { get; set; } } public class ParserCellInfo { /// /// 序号 /// public int sort { get; set; } /// /// 列标 /// public int colsIndx { get; set; } /// /// 行标 /// public int rowIndx { get; set; } /// /// 列名称 /// public string colsName { get; set; } /// /// 单元值 /// public string cellVal { get; set; } } public class ParserColsInfo { /// /// 行标 /// public int sort { get; set; } /// /// 列标 /// public int colsIndx { get; set; } /// /// 列名称 /// public string colsName { get; set; } /// /// 上层列标题 /// public List aboveColsList { get; set; } } }