| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 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;
- }
- /// <summary>
- /// 生成代码
- /// </summary>
- /// <param name="param">参数</param>
- /// <returns>生成代码</returns>
- [HttpPost]
- [Route("/v1/omega_source/MakeCode/getMakeCodeList")]
- public IActionResult getMakeCodeList([FromQuery] MakeCodeDto param)
- {
-
- return SUCCESS("ok");
- }
- }
- }
|