using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 字典类型 /// [ApiDescriptionSettings(Name = "sys-dict-type")] [Route("sys/dict/type")] public class SysDictTypeAppService(ISysDictTypeService dictTypeService) : IDynamicApiController { /// /// 获取所有字典类型列表 /// /// [AllowAnonymous] [DisableOpLog] public async Task> GetAllList() { return await dictTypeService.GetAllList(); } }