using Vo; using Microsoft.AspNetCore.Mvc; using Model; using Services; using Model.Base; using Vo.Admin; using Mapster; using Infrastructure; using Dto.Client; namespace Controllers.Client { public class MakeCodeController : BaseController { private readonly IDatabaseTableService _DatabaseTableService; public MakeCodeController(IDatabaseTableService DatabaseTableService) { _DatabaseTableService = DatabaseTableService; } /// /// 生成代码 /// /// 参数 /// 生成代码 [HttpPost] [Route("/v1/omega_source/MakeCode/getMakeCodeList")] public IActionResult getMakeCodeList([FromQuery] MakeCodeDto param) { return SUCCESS("ok"); } } }