using System;
|
using System.Collections.Generic;
|
|
namespace ErrorAnalysis.Repository.Entity;
|
|
public partial class COModelTable
|
{
|
public string ModelID { get; set; } = null!;
|
|
public decimal BIT { get; set; }
|
|
public decimal CasingOD { get; set; }
|
|
public decimal CasingID { get; set; }
|
|
public decimal? ScreenOD { get; set; }
|
|
public string? ScreenID { get; set; }
|
|
public string TubeOD { get; set; } = null!;
|
|
public decimal TubeID { get; set; }
|
|
public string Lithology { get; set; } = null!;
|
|
public string? VSH { get; set; }
|
|
public decimal? 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; }
|
}
|