package logic import ( "context" "biCenter/api/internal/svc" "biCenter/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type MyinfoLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewMyinfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *MyinfoLogic { return &MyinfoLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *MyinfoLogic) Myinfo(req *types.MyInfoReq) (resp *types.Reply, err error) { // todo: add your logic here and delete this line return }