using System;
|
using System.Collections.Generic;
|
|
namespace ErrorAnalysis.Repository.Entity;
|
|
public partial class GasmodelTable
|
{
|
public string? ModelId { get; set; }
|
|
public string? Bit { get; set; }
|
|
public string? CasingDiameter { get; set; }
|
|
public string? ScreenPipeDiameter { get; set; }
|
|
public string? TubeDiameter { get; set; }
|
|
public string? Lithology { get; set; }
|
|
public string? Vsh { get; set; }
|
|
public string? OilDensity { get; set; }
|
|
public string? Bhsalinity { get; set; }
|
|
public string? ReservoirSalinity { get; set; }
|
|
public string? TubeOilHoldUp { get; set; }
|
|
public string? AnnulusOilHoldUp { get; set; }
|
|
public string? CementBond { get; set; }
|
|
public string? GravelFill { get; set; }
|
}
|