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