|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | + |
| 4 | +namespace CSC.PublicApi.DatabaseContext.Entities; |
| 5 | + |
| 6 | +/// <summary> |
| 7 | +/// https://iri.suomi.fi/model/researchfi_core_project/ |
| 8 | +/// Projektin kuvailutiedot ajassa |
| 9 | +/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time |
| 10 | +/// </summary> |
| 11 | +public partial class DimDescriptiveItem |
| 12 | +{ |
| 13 | + public int Id { get; set; } |
| 14 | + |
| 15 | + /// <summary> |
| 16 | + /// https://iri.suomi.fi/model/researchfi_core_project/ |
| 17 | + /// Projektin kuvailutiedot ajassa |
| 18 | + /// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time |
| 19 | + /// - liittyy projektiin |
| 20 | + /// </summary> |
| 21 | + public int DimResearchProjectId { get; set; } |
| 22 | + |
| 23 | + /// <summary> |
| 24 | + /// https://iri.suomi.fi/model/researchfi_core_project/ |
| 25 | + /// Projektin kuvailutiedot ajassa |
| 26 | + /// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time |
| 27 | + /// * alkamispäivämäärä |
| 28 | + /// </summary> |
| 29 | + public int DimStartDate { get; set; } |
| 30 | + |
| 31 | + /// <summary> |
| 32 | + /// https://iri.suomi.fi/model/researchfi_core_project/ |
| 33 | + /// Projektin kuvailutiedot ajassa |
| 34 | + /// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time |
| 35 | + /// * päättymispäivämäärä |
| 36 | + /// </summary> |
| 37 | + public int? DimEndDate { get; set; } |
| 38 | + |
| 39 | + /// <summary> |
| 40 | + /// https://iri.suomi.fi/model/researchfi_core_project/ |
| 41 | + /// Projektin kuvailutiedot ajassa |
| 42 | + /// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time |
| 43 | + /// * kuvailutiedon sisältö |
| 44 | + /// </summary> |
| 45 | + public string? DescriptiveItem { get; set; } |
| 46 | + |
| 47 | + /// <summary> |
| 48 | + /// https://iri.suomi.fi/model/researchfi_core_project/ |
| 49 | + /// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_type |
| 50 | + /// - description |
| 51 | + /// - name |
| 52 | + /// - goal |
| 53 | + /// - outcome_effect |
| 54 | + /// - abberviation |
| 55 | + /// </summary> |
| 56 | + public string DescriptiveItemType { get; set; } = null!; |
| 57 | + |
| 58 | + /// <summary> |
| 59 | + /// fi, en, sv, NULL |
| 60 | + /// </summary> |
| 61 | + public string? DescriptiveItemLanguage { get; set; } |
| 62 | + |
| 63 | + public string SourceId { get; set; } = null!; |
| 64 | + |
| 65 | + public string? SourceDescription { get; set; } |
| 66 | + |
| 67 | + public DateTime? Created { get; set; } |
| 68 | + |
| 69 | + public DateTime? Modified { get; set; } |
| 70 | + |
| 71 | + public int DimRegisteredDataSourceId { get; set; } |
| 72 | + |
| 73 | + public virtual DimDate? DimEndDateNavigation { get; set; } |
| 74 | + |
| 75 | + public virtual DimRegisteredDataSource DimRegisteredDataSource { get; set; } = null!; |
| 76 | + |
| 77 | + public virtual DimResearchProject DimResearchProject { get; set; } = null!; |
| 78 | + |
| 79 | + public virtual DimDate DimStartDateNavigation { get; set; } = null!; |
| 80 | +} |
0 commit comments