lx
2025-07-02 3472cc3c29841c6ede8a0a51b9a78b2bcd7a3c42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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; }
}