fdaf615194
通过批量导入、标准化打印和材料导出,减少检测结果及材料信息的人工整理,确保检测单、委托状态和焊口质量资料保持一致。
71 lines
2.8 KiB
C#
71 lines
2.8 KiB
C#
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; }
|
|
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; }
|
|
}
|
|
|
|
public class WeldAppearanceCheckItem
|
|
{
|
|
public string AppearanceCheckId { get; set; }
|
|
public string CheckCode { get; set; }
|
|
public string ProjectId { get; set; }
|
|
public string WeldJointId { get; set; }
|
|
public string PipelineCode { get; set; }
|
|
public string WeldJointCode { get; set; }
|
|
public string UnitWorkId { get; set; }
|
|
public string UnitWorkName { get; set; }
|
|
public string WelderCode { get; set; }
|
|
public string Specification { get; set; }
|
|
public string MaterialCode { get; set; }
|
|
public string WeldingLocation { get; set; }
|
|
public string WeldingMethodCode { get; set; }
|
|
public string WeldingRodCode { get; set; }
|
|
public string WeldingWireCode { get; set; }
|
|
public string WeldingMaterial { 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; }
|
|
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; }
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|