添加门店管理员获取信息接口、调整微信登录账号生成逻辑

This commit is contained in:
2025-06-11 16:47:34 +08:00
parent 427df4a3bf
commit 1e94848f8d
11 changed files with 104 additions and 5 deletions

View File

@ -0,0 +1,15 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package storeAdmin
import (
"context"
"server/api/storeAdmin/v1"
)
type IStoreAdminV1 interface {
Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoRes, err error)
}

View File

@ -0,0 +1,12 @@
package v1
import "github.com/gogf/gf/v2/frame/g"
type InfoReq struct {
g.Meta `path:"/store/info" method:"get" tags:"StoreAdmin" summary:"(门店管理员)获取门店管理员信息"`
}
type InfoRes struct {
Id int64 `json:"id"`
Username string `json:"username"`
}