SGGL_SHJ/SGGL/Model/HJGL/TestPackageAnalyzeOutput.cs

68 lines
2.0 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.

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>
/// 试压条件状态:"已具备"、"易具备"、"未具备"
/// </summary>
public string CanPressureTest { get; set; }
/// <summary>
/// 管线通过率(通过管线数 / 管线总数 * 100保留两位小数
/// </summary>
public decimal PipelinePassPercent { 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 PassPipelines { 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; }
}
}