DD.WellWorkover.Cloud/AsbCloudDb/Model/FluidData.cs

68 lines
2.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudDb.Model
{
[Table("t_fluid_data")]
public class FluidData
{
[Key]
[Column("id")]
public int Id { get; set; }
[Column("temperature")]
public double Temperature { get; set; }
[Column("density")]
public double Density { get; set; }
[Column("conditionalViscosity")]
public double ConditionalViscosity { get; set; }
[Column("r300")]
public double R300 { get; set; }
[Column("r600")]
public double R600 { get; set; }
[Column("r3r6")]
public double R3r6 { get; set; }
[Column("dnsDpa")]
public double DnsDpa { get; set; }
[Column("plasticViscocity")]
public double PlasticViscocity { get; set; }
[Column("snsDpa")]
public double SnsDpa { get; set; }
[Column("r3r649С")]
public double R3r649С { get; set; }
[Column("dns49Cdpa")]
public double Dns49Cdpa { get; set; }
[Column("plasticViscocity49c")]
public double PlasticViscocity49c { get; set; }
[Column("sns49Cdpa")]
public double Sns49Cdpa { get; set; }
[Column("mbt")]
public double Mbt { get; set; }
[Column("sand")]
public double Sand { get; set; }
[Column("filtering")]
public double Filtering { get; set; }
[Column("crust")]
public double Crust { get; set; }
[Column("ktk")]
public double Ktk { get; set; }
[Column("ph")]
public double Ph { get; set; }
[Column("hardness")]
public double Hardness { get; set; }
[Column("chlorides")]
public double Chlorides { get; set; }
[Column("pf")]
public double Pf { get; set; }
[Column("mf")]
public double Mf { get; set; }
[Column("pm")]
public double Pm { get; set; }
[Column("fluidSolidPhase")]
public double FluidSolidPhase { get; set; }
[Column("grease")]
public double Grease { get; set; }
[Column("calciumCarbonate")]
public double CalciumCarbonate { get; set; }
}
}