Files
SGGL_SHJ/SGGL/Model/HJGL/TestPackageAnalyzeOutput.cs
T

59 lines
1.7 KiB
C#

namespace Model
{
public class TestPackageAnalyzeOutput
{
/// <summary>
/// 试压包号
/// </summary>
public string PTP_ID { get; set; }
/// <summary>
/// 试压包编号
/// </summary>
public string TestPackageNo { get; set; }
/// <summary>
/// 单位工程名称
/// </summary>
public string UnitWorkName { get; set; }
/// <summary>
/// 是否具备试压条件(全通过数量 == 管线数量,且未通过数为0)。
/// </summary>
public bool CanPressureTest { get; set; }
/// <summary>
/// 检测完成百分比(已检测焊口 / 总焊口 * 100,保留两位小数)。
/// </summary>
public decimal DetectionCompletionPercent { get; set; }
/// <summary>
/// 焊口完成百分比(已焊口 / 总焊口 * 100,保留两位小数)。
/// </summary>
public decimal WeldCompletionPercent { get; set; }
/// <summary>
/// 状态
/// </summary>
public string StateStr { get; set; }
/// <summary>
/// 当前试压包下的管线总数。
/// </summary>
public int TotalPipelines { get; set; }
/// <summary>
/// 当前试压包下的焊口总数。
/// </summary>
public int TotalWeldJoints { get; set; }
/// <summary>
/// 当前试压包下已焊接的焊口数。
/// </summary>
public int CompletedWeldJoints { get; set; }
/// <summary>
/// 当前试压包下已检测的焊口数(去重)。
/// </summary>
public int DetectedWeldJoints { get; set; }
}
}