14 lines
466 B
C#
14 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Service.MeterProcessState.Data
|
|
{
|
|
public partial class CordonelPressureTestTestPoints : Ui.Web.IMeterDataCenter.Data.BaseEntity
|
|
{
|
|
public int CordonelPressureTestTestPointsId { get; set; }
|
|
public int CordonelPressureTestId { get; set; }
|
|
public int CordonelPressureTestTestPointNr { get; set; }
|
|
public double CordonelPressureTestTestPointResult { get; set; }
|
|
}
|
|
}
|