แก้reportคำสั่งพ้นราชการ
This commit is contained in:
parent
b99330e94b
commit
e52e9e0c05
2 changed files with 35 additions and 2 deletions
|
|
@ -2390,7 +2390,7 @@ namespace BMA.EHR.Command.Service.Controllers
|
||||||
[ProducesResponseType(StatusCodes.Status200OK)]
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
||||||
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
||||||
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
|
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
|
||||||
public async Task<ActionResult<ResponseObject>> PostType18Async([FromBody] CreateCommandGroup11Request req)
|
public async Task<ActionResult<ResponseObject>> PostType18Async([FromBody] CreateCommandGroup14Request req)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
@ -2439,7 +2439,7 @@ namespace BMA.EHR.Command.Service.Controllers
|
||||||
[ProducesResponseType(StatusCodes.Status200OK)]
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
||||||
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
||||||
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
|
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
|
||||||
public async Task<ActionResult<ResponseObject>> PutType18Async(Guid orderId, [FromBody] CreateCommandGroup11Request req)
|
public async Task<ActionResult<ResponseObject>> PutType18Async(Guid orderId, [FromBody] CreateCommandGroup14Request req)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
namespace BMA.EHR.Command.Service.Requests
|
||||||
|
{
|
||||||
|
public class CreateCommandGroup14Request
|
||||||
|
{
|
||||||
|
public Guid orderTypeValue { get; set; }
|
||||||
|
|
||||||
|
public string orderTitle { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string orderNo { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public int orderYear { get; set; }
|
||||||
|
|
||||||
|
public DateTime orderDate { get; set; }
|
||||||
|
|
||||||
|
public Guid orderBy { get; set; }
|
||||||
|
|
||||||
|
public string orderByOrganizationName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string signatoryBy { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string signatoryPosition { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string fault { get; set; }
|
||||||
|
|
||||||
|
public string guiltyBasis { get; set; }
|
||||||
|
|
||||||
|
public string conclusionFireNo { get; set; }
|
||||||
|
|
||||||
|
public DateTime conclusionFireDate { get; set; }
|
||||||
|
|
||||||
|
public string conclusionFireResolution { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue