feat:country_code返回数据

This commit is contained in:
qiaoqinzheng 2023-05-23 09:36:36 +08:00
parent ae43c7d597
commit 21b73368dc

View File

@ -67,8 +67,8 @@ public class GardsStationsServiceImpl extends ServiceImpl<GardsStationsMapper, G
@Override
public List<String> findCountryCode() {
this.baseMapper.findCountryCode();
return null;
List<String> countryCode = this.baseMapper.findCountryCode();
return countryCode;
}
/**