refactor(controller): 重构服务模块命名,统一使用小写包名并优化模型结构

This commit is contained in:
1
2025-07-26 02:06:08 +00:00
parent 492d3a1207
commit 99318f6674
14 changed files with 149 additions and 155 deletions

View File

@@ -3,11 +3,11 @@ package controller
import (
"blazing/common/data/entity"
"blazing/logic/service"
"blazing/logic/service/SystemTime"
"blazing/logic/service/systemtime"
)
func (h Controller) SystemTimeInfo(data *SystemTime.InInfo, c *entity.Player) (result *SystemTime.OutInfo, err service.OutInfo) {
result = SystemTime.NewOutInfo()
func (h Controller) SystemTimeInfo(data *systemtime.InInfo, c *entity.Player) (result *systemtime.OutInfo, err service.OutInfo) {
result = systemtime.NewOutInfo()
return
}