Commit 8a979ec5 by fudahua

Merge branch 'developer' into 'master'

feat:时间格式

See merge request !53
parents b45b7892 2b088791
...@@ -995,6 +995,10 @@ public class FlatQueryResultServiceImpl implements IFlatQueryResultService { ...@@ -995,6 +995,10 @@ public class FlatQueryResultServiceImpl implements IFlatQueryResultService {
Integer type = columnMate.get(j).getValue(); Integer type = columnMate.get(j).getValue();
Cell midCell = row.createCell(j); Cell midCell = row.createCell(j);
String columnValue = columnValues[j]; String columnValue = columnValues[j];
if (StringUtils.isBlank(columnValue)) {
midCell.setCellValue(columnValue);
continue;
}
switch (type) { switch (type) {
case Types.DATE: case Types.DATE:
midCell.setCellStyle(yyyyMMdd); 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