ต้นแบบการทำรายงาน

This commit is contained in:
Suphonchai Phoonsawat 2023-08-17 10:46:30 +07:00
parent 3332af583b
commit 3c11d1b5a1
6 changed files with 83 additions and 5 deletions

View file

@ -0,0 +1,18 @@
using BMA.EHR.Domain.Common;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Swashbuckle.AspNetCore.Annotations;
namespace BMA.EHR.Report.Service.Controllers
{
[Route("api/v{version:apiVersion}/report/retire")]
[ApiVersion("2.0")]
[ApiController]
[Produces("application/json")]
[Authorize]
[SwaggerTag("API รายงานระบบเกษียณ")]
public class RetireReportController : BaseController
{
}
}