feat:增加焊前管理,材料管理条码扫码接口,材料信息导入支持无炉批号/有炉批号 多种导入方式
This commit is contained in:
@@ -0,0 +1,110 @@
|
||||
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 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user