forked from ddrilling/AsbCloudServer
Olga Nemt
b6181ab82f
2. Обновление типа данных поля "Дата отчета" в таблице "Суточный рапорт" (timestamp with time zone изменен на date)
22 lines
764 B
C#
22 lines
764 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model.DailyReport
|
|
{
|
|
[Table("t_daily_report"), Comment("Ежедневные отчёты")]
|
|
public class DailyReport
|
|
{
|
|
[Column("id_well"), Comment("ID скважины")]
|
|
public int IdWell { get; set; }
|
|
|
|
[Column("start_date", TypeName = "date"), Comment("Дата отчёта")]
|
|
public DateOnly StartDate { get; set; }
|
|
|
|
[Column("info", TypeName = "jsonb"), Comment("Список параметров для отчёта")]
|
|
public DailyReportInfo Info { get; set; } = null!;
|
|
|
|
[ForeignKey(nameof(IdWell))]
|
|
public virtual Well Well { get; set; } = null!;
|
|
}
|
|
} |