LiangQinghai

Results 2 issues of LiangQinghai

*now* - table: `t_user`, `t_role` - genModel: `TUSER`, `TROLE` *expect* - table: `t_user`, `t_role` - genModel:` USER`, `ROLE` How to achieve this effect with GOCT?

stale

**Describe the bug** 无法指定服务注册ip信息 **To Reproduce** Steps to reproduce the behavior: 1. 服务注册中心选择nacos, 2. 本地电脑运行, 3. 通过server.WithRegistryInfo设置了绑定注册ip到127.0.0.1, 4. 通过server.WithServiceAddr(addr)绑定了服务的运行ip是0.0.0.0 **Expected behavior** 期望nacos注册的ip地址是127.0.0.1 **Screenshots** github.com/cloudwego/[email protected]/server/server.go:265 在Run方法调用了buildRegistryInfo方法对注册信息进行了修改,修改为当前服务运行的地址 ```go func (s *server) buildRegistryInfo(lAddr...