Compare commits

...

2 Commits

Author SHA1 Message Date
hekaiyu
c4b49cfd2b Merge remote-tracking branch 'origin/master' 2025-10-28 18:56:22 +08:00
hekaiyu
532da63c8f 添加额外一种后缀 2025-10-28 18:56:15 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ package org.jeecg.common.constant.enums;
public enum WeatherFileSuffixEnum {
GRIB("grib"),GRIB2("grib2");;
GRIB("grib"),GRIB2("grib2"),GRB2("grb2");;
private String value;

View File

@ -819,7 +819,7 @@ public class WeatherDataServiceImpl extends ServiceImpl<WeatherDataMapper, Weath
.append(".")
.append(WeatherSuffixConstants.NCEP_SUFFIX)
.append(".")
.append(WeatherFileSuffixEnum.GRIB2.getValue());
.append(WeatherFileSuffixEnum.GRB2.getValue());
}
return storagePath.toString();
}