Update เอกสารแนบท้าย

This commit is contained in:
Suphonchai Phoonsawat 2023-07-28 16:30:03 +07:00
parent 7fa7304954
commit dbcf1d31b6
4 changed files with 125 additions and 7 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Command.Service.Requests
{
public class UpdateCommandExecuteRequest
{
public string OrderNo { get; set; } = string.Empty;
public string OrderYear { get; set; } = string.Empty;
public DateTime SignDate { get; set; } = DateTime.Now.Date;
}
}