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
using System;
using System.Collections.Generic;
 
namespace ErrorAnalysis.Repository.Entity;
 
public partial class GasfarResultTable
{
    public string? Id { get; set; }
 
    public string? ModelId { get; set; }
 
    public int? Porosity { get; set; }
 
    public int? Sw { get; set; }
 
    public string? InelasticSpec { get; set; }
 
    public string? Capture1Spec { get; set; }
 
    public string? Capture2Spec { get; set; }
 
    public string? TimeSpec { get; set; }
 
    public string? CinelasticSpec { get; set; }
 
    public string? Ccapture1Spec { get; set; }
 
    public string? Ccapture2Spec { get; set; }
}