feat: 新增账号编码和HTTP连接功能

This commit is contained in:
2026-04-11 18:22:52 +08:00
parent 2f5c4f7e54
commit f8927afa9c
94 changed files with 1213 additions and 10230 deletions

View File

@@ -0,0 +1,16 @@
package controller
import (
"context"
"customer-server/model/dto"
"customer-server/service"
)
var AccountHttp = new(accountHttp)
type accountHttp struct{}
func (c *accountHttp) Connect(ctx context.Context, req *dto.AccountHttpConnectReq) (res *dto.AccountHttpConnectRes, err error) {
res, err = service.AccountHttpService.Connect(ctx, req)
return
}