Che Han

Results 2 issues of Che Han

### Description 在具体的业务实现中,有时需要对一个service去写多个不同的实现以应对不同的业务场景,目前GoFrame自动生成的service接口并不具备这个功能,我推荐自动生成的service可以参考以下格式: ```go package service type IConfigService interface { Foo() string } var localConfigService = make(map[string]IConfigService) func Config(configName ...string) IConfigService { if configName == nil { if localConfigService["default"] ==...

enhancement
inactive

### Go version go version 1.24.0 linux/amd64 ### GoFrame version 2.9.0 ### Can this bug be reproduced with the latest release? Option Yes ### What did you do? ```go ctx...

bug