api คำขอโอน

This commit is contained in:
Kittapath 2023-08-04 16:17:57 +07:00
parent f878ef239e
commit f255b1e933
15 changed files with 13056 additions and 42 deletions

View file

@ -0,0 +1,15 @@
using BMA.EHR.Domain.Models.Base;
using BMA.EHR.Domain.Models.Documents;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Domain.Models.Placement
{
public class PlacementReceiveDoc : EntityBase
{
[Required, Comment("อ้างอิงรหัสเอกสาร")]
public Document Document { get; set; }
[Required, Comment("อ้างอิงรับโอน")]
public virtual PlacementReceive PlacementReceive { get; set; }
}
}