package xunji_service import ( "context" "wechat-api/internal/svc" "wechat-api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type GetXunjiServiceByIdLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewGetXunjiServiceByIdLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetXunjiServiceByIdLogic { return &GetXunjiServiceByIdLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx} } func (l *GetXunjiServiceByIdLogic) GetXunjiServiceById(req *types.IDReq) (resp *types.XunjiServiceInfoResp, err error) { // todo: add your logic here and delete this line return }