using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Application.Service.Common
{
///
/// 开始时候一些帮助 比如根据配置的字典生成枚举
///
///
[ApiExplorerSettings(GroupName = "Common")]
public class DevelopService(IRepository _dictionaryRepository) : BaseService
{
///
/// 根据配置的字典名生成后端枚举
///
///
///
[HttpPost]
public async Task BackDicGenerateEnum(string dicName)
{
return ResponseOutput.Ok();
}
}
}