Commit 2b088791 by fudahua

feat:时间格式

parent 05f55c28
......@@ -995,6 +995,10 @@ public class FlatQueryResultServiceImpl implements IFlatQueryResultService {
Integer type = columnMate.get(j).getValue();
Cell midCell = row.createCell(j);
String columnValue = columnValues[j];
if (StringUtils.isBlank(columnValue)) {
midCell.setCellValue(columnValue);
continue;
}
switch (type) {
case Types.DATE:
midCell.setCellStyle(yyyyMMdd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment