fix(country): 移除冗余花括号并补全国家英文名字段

This commit is contained in:
2025-12-02 19:20:07 +08:00
parent a9ea0d1ebf
commit b69e36391e
2 changed files with 7 additions and 3 deletions

View File

@@ -15,7 +15,4 @@ public interface CountryInfoMapper extends BaseMapper<CountryInfo> {
List<CountryInfoVO> selectByCountryGroupName();
}

View File

@@ -64,4 +64,11 @@ public class CountryInfoVO {
@ApiModelProperty(value = "语言中文")
private String languageName;
/**
* 国家名称英文
*/
@TableField(value = "country_name_english")
@ApiModelProperty(value = "国家名称英文")
private String countryNameEnglish;
}