MakeCodeController.cs 874 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Vo;
  2. using Microsoft.AspNetCore.Mvc;
  3. using Model;
  4. using Services;
  5. using Model.Base;
  6. using Vo.Admin;
  7. using Mapster;
  8. using Infrastructure;
  9. using Dto.Client;
  10. namespace Controllers.Client
  11. {
  12. public class MakeCodeController : BaseController
  13. {
  14. private readonly IDatabaseTableService _DatabaseTableService;
  15. public MakeCodeController(IDatabaseTableService DatabaseTableService)
  16. {
  17. _DatabaseTableService = DatabaseTableService;
  18. }
  19. /// <summary>
  20. /// 生成代码
  21. /// </summary>
  22. /// <param name="param">参数</param>
  23. /// <returns>生成代码</returns>
  24. [HttpPost]
  25. [Route("/v1/omega_source/MakeCode/getMakeCodeList")]
  26. public IActionResult getMakeCodeList([FromQuery] MakeCodeDto param)
  27. {
  28. return SUCCESS("ok");
  29. }
  30. }
  31. }