feat: 完善焊接质量检查和材料管理
补齐焊前专项审核和焊缝外观检测流程,统一质检查询、附件处理与材料明细导出,提升业务数据追溯和组件匹配使用效率。
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
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 class WeldAppearanceCheckItem
|
||||
{
|
||||
public string AppearanceCheckId { get; set; }
|
||||
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; }
|
||||
}
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user