2023-07-13 15:03:29 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Domain.Models.Commands.Core
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CommandStatus : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Required, MaxLength(100), Comment("สถานะของคำสั่ง")]
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2023-07-20 14:53:09 +07:00
|
|
|
|
|
|
|
|
|
|
[Required, Comment("ลำดับการทำงาน")]
|
|
|
|
|
|
public int Sequence { get; set; } = 0;
|
2023-07-13 15:03:29 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|