package logic import ( "context" "bp.jydev.jianyu360.cn/BaseService/entManageApplication/rpc/internal/svc" "bp.jydev.jianyu360.cn/BaseService/entManageApplication/rpc/pb" "bp.jydev.jianyu360.cn/BaseService/entManageApplication/service" "github.com/zeromicro/go-zero/core/logx" ) type EmpowerUserIdsLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewEmpowerUserIdsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *EmpowerUserIdsLogic { return &EmpowerUserIdsLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } func (l *EmpowerUserIdsLogic) EmpowerUserIds(in *pb.EmpowerUserIds) (*pb.EmpowerUserIds, error) { // todo: add your logic here and delete this line return service.EmpowerUserIds(in.Ids), nil }