generated from NHSDigital/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updated create table database script for participant screening …
…episode table and rescaffolded
- Loading branch information
1 parent
58b2beb
commit d7c9e89
Showing
3 changed files
with
92 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,53 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace NHS.ServiceInsights.Model; | ||
|
||
public partial class ParticipantScreeningEpisode | ||
{ | ||
public long Id { get; set; } | ||
namespace NHS.ServiceInsights.Model; | ||
|
||
public string EpisodeId { get; set; } = null!; | ||
public partial class ParticipantScreeningEpisode | ||
{ | ||
public long EpisodeId { get; set; } | ||
|
||
public string? ScreeningName { get; set; } | ||
public long NhsNumber { get; set; } | ||
|
||
public string? NhsNumber { get; set; } | ||
public string? ScreeningName { get; set; } | ||
|
||
public string? EpisodeType { get; set; } | ||
public string? EpisodeType { get; set; } | ||
|
||
public string? EpisodeTypeDescription { get; set; } | ||
public string? EpisodeTypeDescription { get; set; } | ||
|
||
public string? EpisodeOpenDate { get; set; } | ||
public DateOnly? EpisodeOpenDate { get; set; } | ||
|
||
public string? AppointmentMadeFlag { get; set; } | ||
public short? AppointmentMadeFlag { get; set; } | ||
|
||
public string? FirstOfferedAppointmentDate { get; set; } | ||
public DateOnly? FirstOfferedAppointmentDate { get; set; } | ||
|
||
public string? ActualScreeningDate { get; set; } | ||
public DateOnly? ActualScreeningDate { get; set; } | ||
|
||
public string? EarlyRecallDate { get; set; } | ||
public DateOnly? EarlyRecallDate { get; set; } | ||
|
||
public string? CallRecallStatusAuthorisedBy { get; set; } | ||
public string? CallRecallStatusAuthorisedBy { get; set; } | ||
|
||
public string? EndCode { get; set; } | ||
public string? EndCode { get; set; } | ||
|
||
public string? EndCodeDescription { get; set; } | ||
public string? EndCodeDescription { get; set; } | ||
|
||
public string? EndCodeLastUpdated { get; set; } | ||
public DateOnly? EndCodeLastUpdated { get; set; } | ||
|
||
public string? OrganisationCode { get; set; } | ||
public string? ReasonClosedCode { get; set; } | ||
|
||
public string? OrganisationName { get; set; } | ||
public string? ReasonClosedCodeDescription { get; set; } | ||
|
||
public string? BatchId { get; set; } | ||
public string? FinalActionCode { get; set; } | ||
|
||
public DateTime? RecordInsertDatetime { get; set; } | ||
} | ||
public string? FinalActionCodeDescription { get; set; } | ||
|
||
public string? EndPoint { get; set; } | ||
|
||
public string? OrganisationCode { get; set; } | ||
|
||
public string? OrganisationName { get; set; } | ||
|
||
public string? BatchId { get; set; } | ||
|
||
public DateTime? RecordInsertDatetime { get; set; } | ||
} |