lx
2025-07-07 c3904896ecb869d4147b749b00db9e88736bf444
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
 
namespace ErrorAnalysis.Repository.Entity;
 
public partial class SIGNearResultTable
{
    public string ID { get; set; } = null!;
 
    public string ModelID { get; set; } = null!;
 
    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; }
}