修改云量数据类型

This commit is contained in:
遥望-何玉明 2024-07-25 09:03:59 +08:00
parent 81fdda8f21
commit 7e825c2caf
2 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ public class EntityDataAll implements Serializable {
/**
* 云层覆盖量
*/
private Integer cloudCover;
private Double cloudCover;
/**
* 生产时间

View File

@ -138,7 +138,7 @@ public class EntityDataAllServiceImpl extends ServiceImpl<EntityDataAllMapper, E
break;
case 5:
String s = cell.getStringCellValue();
entityDataAll.setCloudCover(Integer.parseInt(s));
entityDataAll.setCloudCover(Double.parseDouble(s));
break;
case 6:
entityDataAll.setSatelliteCode(cell.getStringCellValue());