apiจัดสรร
This commit is contained in:
parent
0aa0aedba9
commit
15931fbaca
27 changed files with 64051 additions and 120 deletions
12
BMA.EHR.Application/Requests/InsigniaBorrowRequest.cs
Normal file
12
BMA.EHR.Application/Requests/InsigniaBorrowRequest.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Application.Requests
|
||||
{
|
||||
public class InsigniaBorrowRequest
|
||||
{
|
||||
public DateTime BorrowDate { get; set; }
|
||||
public Guid BorrowOrganizationId { get; set; }
|
||||
public Guid InsigniaNoteProfileId { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Application.Requests
|
||||
{
|
||||
public class InsigniaManageOrganizationRequest
|
||||
{
|
||||
public Guid OrganizationOrganizationId { get; set; }
|
||||
public Guid insigniaManageId { get; set; }
|
||||
public int Total { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Application.Requests
|
||||
{
|
||||
public class InsigniaManageOrganizationUpdateRequest
|
||||
{
|
||||
public int Total { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -8,6 +8,6 @@ namespace BMA.EHR.Application.Requests
|
|||
public Guid Insignia { get; set; }
|
||||
public int Year { get; set; }
|
||||
public int Total { get; set; }
|
||||
public string Type { get; set; }
|
||||
// public string Type { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
public string Status { get; set; }
|
||||
public bool IsApprove { get; set; }
|
||||
public DateTime? RequestDate { get; set; }
|
||||
public string RequestNote { get; set; }
|
||||
public string? RequestNote { get; set; }
|
||||
public List<InsigniaRequestDoc>? Docs { get; set; }
|
||||
|
||||
public List<MatchingCondition> MatchingConditions { get; set; } = new List<MatchingCondition>();
|
||||
|
|
|
|||
12
BMA.EHR.Application/Requests/InsigniaReturnRequest.cs
Normal file
12
BMA.EHR.Application/Requests/InsigniaReturnRequest.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Application.Requests
|
||||
{
|
||||
public class InsigniaReturnRequest
|
||||
{
|
||||
public DateTime ReturnDate { get; set; }
|
||||
public Guid ReturnOrganizationId { get; set; }
|
||||
public string ReturnReason { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue