lx
2025-11-18 e81cbb4c978bec283c58629156c07106aaa46943
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; }
}