DD.WellWorkover.Cloud/AsbCloudDb/Model/ReportProperty.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2021-07-21 15:29:19 +05:00
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudDb.Model
{
2021-08-16 10:38:48 +05:00
[Table("t_report_property"), Comment("Отчеты с данными по буровым")]
2021-09-10 11:28:57 +05:00
public class ReportProperty : IId, IIdWell
{
[Key]
[Column("id")]
public int Id { get; set; }
[Column("id_well"), Comment("id скважины")]
public int IdWell { get; set; }
[Column("id_file"), Comment("id файла-родителя")]
public int IdFile { get; set; }
[Column("begin", TypeName = "timestamp with time zone")]
public DateTimeOffset Begin { get; set; }
[Column("end"), Comment("timestamp with time zone")]
public DateTimeOffset End { get; set; }
2021-05-24 16:31:02 +05:00
[Column("step"), Comment("размер шага в секундах")]
public int Step { get; set; }
[Column("format"), Comment("Формат отчета")]
public int Format { get; set; }
[ForeignKey(nameof(IdWell))]
public virtual Well Well { get; set; }
[ForeignKey(nameof(IdFile))]
public virtual FileInfo File { get; set; }
}
}