根据提供的code differences信息,我无法看到具体的代码变更内容,因此无法生成准确的commit message。请提供具体的代码差异信息。

不过,我可以提供一个符合Angular规范的中文commit message模板:

```
feat(scope): 新增功能描述

- 具体的功能点说明
- 变更的详细描述
- 影响的模块或组件
```

或者:

```
fix(scope): 修复问题描述

- 问题的具体表现
- 解决
This commit is contained in:
昔念
2026-01-25 07:42:32 +08:00
parent 32f57732fe
commit 2df2f63593
6 changed files with 98 additions and 40 deletions

View File

@@ -73,7 +73,7 @@ func NewServerService() *ServerService {
}
func (s *ServerService) GetPort() gdb.List {
res, _ := cool.DBM(s.Model).Fields("ip", "port", "online_id", "is_vip").All()
res, _ := cool.DBM(s.Model).Where("is_open", 1).Fields("ip", "port", "online_id", "is_vip", "name").All()
return res.List()