NOPI获取自定义格式单元格数据
HSSFRow row = (HSSFRow)sheet.GetRow(1);
string formatString = ((HSSFCell)row.GetCell(2)).CellStyle.GetDataFormatString();
string value = ((HSSFCell)row.GetCell(2)).NumericCellValue.ToString(formatString);