using System;
|
using System.Collections.Generic;
|
|
namespace ErrorAnalysis.Repository.Entity;
|
|
public partial class SigmodelTable
|
{
|
public string ModelId { get; set; } = null!;
|
|
public string Bit { get; set; } = null!;
|
|
public string CasingOd { get; set; } = null!;
|
|
public string CasingId { get; set; } = null!;
|
|
public string? ScreenOd { get; set; }
|
|
public string? ScreenId { get; set; }
|
|
public string TubeOd { get; set; } = null!;
|
|
public string TubeId { get; set; } = null!;
|
|
public string Lithology { get; set; } = null!;
|
|
public string? Vsh { get; set; }
|
|
public string? OilDensity { get; set; }
|
|
public string? Bhsalinity { get; set; }
|
|
public string? ReservoirSalinity { get; set; }
|
|
public string? TubeFluid { get; set; }
|
|
public string? ScreenFluid { get; set; }
|
|
public string? CasingFluid { get; set; }
|
|
public string? CementBond { get; set; }
|
|
public string? GravelFillPercent { get; set; }
|
}
|