lx
2025-07-03 ad8e8447cab9adb6d9bc30ad6f78e92cc9a9789b
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
36
37
38
39
40
41
42
43
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; }
}