2026-08-10 17:58:55 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
{
|
|
|
|
|
public class WeldAppearanceCheckInput
|
|
|
|
|
{
|
|
|
|
|
public string AppearanceCheckId { get; set; }
|
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
|
public string WeldJointId { get; set; }
|
|
|
|
|
public bool IsQualified { get; set; }
|
|
|
|
|
public string CheckPerson { get; set; }
|
|
|
|
|
public DateTime? CheckTime { get; set; }
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
public string AttachUrl { get; set; }
|
|
|
|
|
public string CreateUser { get; set; }
|
2026-08-19 17:13:33 +08:00
|
|
|
public decimal? WeldReinforcement { get; set; }
|
|
|
|
|
public decimal? WeldHeight { get; set; }
|
|
|
|
|
public decimal? WeldWidth { get; set; }
|
|
|
|
|
public string SurfaceDefect { get; set; }
|
|
|
|
|
public decimal? PreheatTemperature { get; set; }
|
|
|
|
|
public decimal? InterpassTemperature { get; set; }
|
2026-08-10 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class WeldAppearanceCheckItem
|
|
|
|
|
{
|
|
|
|
|
public string AppearanceCheckId { get; set; }
|
2026-08-19 17:13:33 +08:00
|
|
|
public string CheckCode { get; set; }
|
2026-08-10 17:58:55 +08:00
|
|
|
public string ProjectId { get; set; }
|
|
|
|
|
public string WeldJointId { get; set; }
|
|
|
|
|
public string PipelineCode { get; set; }
|
|
|
|
|
public string WeldJointCode { get; set; }
|
|
|
|
|
public bool IsQualified { get; set; }
|
|
|
|
|
public string QualifiedText { get; set; }
|
|
|
|
|
public string CheckPerson { get; set; }
|
|
|
|
|
public string CheckPersonName { get; set; }
|
|
|
|
|
public DateTime CheckTime { get; set; }
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
public string AttachUrl { get; set; }
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
2026-08-19 17:13:33 +08:00
|
|
|
public decimal? WeldReinforcement { get; set; }
|
|
|
|
|
public decimal? WeldHeight { get; set; }
|
|
|
|
|
public decimal? WeldWidth { get; set; }
|
|
|
|
|
public string SurfaceDefect { get; set; }
|
|
|
|
|
public decimal? PreheatTemperature { get; set; }
|
|
|
|
|
public decimal? InterpassTemperature { get; set; }
|
2026-08-10 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class WeldAppearanceJointItem
|
|
|
|
|
{
|
|
|
|
|
public string WeldJointId { get; set; }
|
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
|
public string PipelineCode { get; set; }
|
|
|
|
|
public string WeldJointCode { get; set; }
|
|
|
|
|
public string WeldTypeCode { get; set; }
|
|
|
|
|
public string WeldingMethodCode { get; set; }
|
|
|
|
|
public DateTime? WeldingDate { get; set; }
|
|
|
|
|
public List<WeldAppearanceCheckItem> History { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|