package logic import ( "context" "app.yhyue.com/moapp/jyInfo/rpc/common/common" "app.yhyue.com/moapp/jyInfo/rpc/common/internal/svc" "github.com/zeromicro/go-zero/core/logx" ) type IndustryInfoLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewIndustryInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IndustryInfoLogic { return &IndustryInfoLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 获取行业信息 func (l *IndustryInfoLogic) IndustryInfo(in *common.ProjectReq) (*common.IndustryResp, error) { // todo: add your logic here and delete this line return &common.IndustryResp{}, nil }