113 lines
2.6 KiB
C#
113 lines
2.6 KiB
C#
using System;
|
|
|
|
namespace Model
|
|
{
|
|
/// <summary>
|
|
/// 焊前抽检焊口信息
|
|
/// </summary>
|
|
public class PreWeldJointItem
|
|
{
|
|
public string WeldJointId { get; set; }
|
|
|
|
public string WeldJointCode { get; set; }
|
|
|
|
public string PipelineId { get; set; }
|
|
|
|
public string PipelineCode { get; set; }
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
public string ProjectName { get; set; }
|
|
|
|
public string GrooveTypeId { get; set; }
|
|
|
|
public string GrooveTypeCode { get; set; }
|
|
|
|
public string GrooveTypeName { get; set; }
|
|
|
|
public string GrooveProcessType { get; set; }
|
|
|
|
public decimal? GrooveAngle { get; set; }
|
|
|
|
public decimal? FitupGap { get; set; }
|
|
|
|
public decimal? Misalignment { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 下料抽检保存参数
|
|
/// </summary>
|
|
public class PreWeldCuttingCheckItem
|
|
{
|
|
public string CuttingCheckId { get; set; }
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
public string WeldJointId { get; set; }
|
|
|
|
public string PipelineCode { get; set; }
|
|
|
|
public string WeldJointCode { get; set; }
|
|
|
|
public bool IsMaterialCodeBatchNoAccurate { get; set; }
|
|
|
|
public bool IsMaterialQuantityAccurate { get; set; }
|
|
|
|
public bool IsQualified { get; set; }
|
|
|
|
public string CheckPerson { get; set; }
|
|
|
|
public string CheckPersonName { get; set; }
|
|
|
|
public DateTime? CheckTime { get; set; }
|
|
|
|
public string CreateUser { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 组对抽检保存参数
|
|
/// </summary>
|
|
public class PreWeldFitupCheckItem
|
|
{
|
|
public string FitupCheckId { get; set; }
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
public string WeldJointId { get; set; }
|
|
|
|
public string PipelineCode { get; set; }
|
|
|
|
public string WeldJointCode { get; set; }
|
|
|
|
public string GrooveTypeId { get; set; }
|
|
|
|
public string GrooveTypeCode { get; set; }
|
|
|
|
public string GrooveTypeName { get; set; }
|
|
|
|
public string GrooveProcessType { get; set; }
|
|
|
|
public decimal? GrooveAngle { get; set; }
|
|
|
|
public decimal? FitupGap { get; set; }
|
|
|
|
public decimal? Misalignment { get; set; }
|
|
|
|
public string CheckPerson { get; set; }
|
|
|
|
public string CheckPersonName { get; set; }
|
|
|
|
public DateTime? CheckTime { get; set; }
|
|
|
|
public string CreateUser { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|