12 lines
299 B
C#
12 lines
299 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|