forked from ddrilling/AsbCloudServer
24 lines
782 B
C#
24 lines
782 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model
|
|
{
|
|
[Table("t_relation_company_well"), Comment("отношение скважин и компаний")]
|
|
public partial class RelationCompanyWell : IWellRelated
|
|
{
|
|
[Column("id_well")]
|
|
public int IdWell { get; set; }
|
|
|
|
[Column("id_company")]
|
|
public int IdCompany { get; set; }
|
|
|
|
[ForeignKey(nameof(IdWell))]
|
|
[InverseProperty(nameof(Model.Well.RelationCompaniesWells))]
|
|
public virtual Well Well { get; set; } = null!;
|
|
|
|
[ForeignKey(nameof(IdCompany))]
|
|
[InverseProperty(nameof(Model.Company.RelationCompaniesWells))]
|
|
public virtual Company Company { get; set; } = null!;
|
|
}
|
|
}
|