ต้นแบบการทำรายงาน
This commit is contained in:
parent
3332af583b
commit
3c11d1b5a1
6 changed files with 83 additions and 5 deletions
18
BMA.EHR.Report.Service/Controllers/RetireReportController.cs
Normal file
18
BMA.EHR.Report.Service/Controllers/RetireReportController.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue