1.添加英文国家名字段

This commit is contained in:
2025-10-13 17:56:03 +08:00
parent a4020b9176
commit b82dbacfee
3 changed files with 9 additions and 8 deletions

View File

@@ -75,6 +75,9 @@ public class NewHosts {
@ApiModelProperty(value = "主播国家", example = "中国")
private String country;
@ApiModelProperty(value = "主播国家英文", example = "China")
private String countryEng;
/**
* 直播类型 娱乐,游戏
*/

View File

@@ -4,9 +4,6 @@ import org.apache.commons.lang3.StringUtils;
/**
* SQL 工具
*
* @author <a href="https://github.com/liyupi">程序员鱼皮</a>
* @from <a href="https://yupi.icu">编程导航知识星球</a>
*/
public class SqlUtils {