using FlexJobApi.Core; using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Application { /// /// 获取字典数据分页列表 /// public class GetDictionaryDatasQueryHandler : IRequestHandler { public Task Handle(GetDictionaryDatasQuery request, CancellationToken cancellationToken) { throw new NotImplementedException(); } } }