feat(hjgl)焊前准备,日报管理增加附件

This commit is contained in:
2026-06-24 16:56:00 +08:00
parent dfc9095282
commit 4670220614
23 changed files with 598 additions and 65 deletions
@@ -77,4 +77,45 @@
// get; set;
// }
}
/// <summary>
/// 小程序按焊口保存焊接日报及焊前、焊后附件参数
/// </summary>
public class WeldingDailyByWeldJointAttachItem
{
/// <summary>
/// 焊口ID
/// </summary>
public string WeldJointId { get; set; }
/// <summary>
/// 人员ID
/// </summary>
public string Personid { get; set; }
/// <summary>
/// 焊接日期
/// </summary>
public string time { get; set; }
/// <summary>
/// 焊接位置ID
/// </summary>
public string weldingLocation { get; set; }
/// <summary>
/// 焊工类型 0 全部 1 打底 2 盖面
/// </summary>
public int welderType { get; set; }
/// <summary>
/// 焊前附件路径
/// </summary>
public string PreWeldAttachUrl { get; set; }
/// <summary>
/// 焊后附件路径
/// </summary>
public string PostWeldAttachUrl { get; set; }
}
}
@@ -32,6 +32,16 @@ namespace Model
public decimal? FitupGap { get; set; }
public decimal? Misalignment { get; set; }
/// <summary>
/// 下料抽检附件路径
/// </summary>
public string CuttingAttachUrl1 { get; set; }
/// <summary>
/// 组对抽检附件路径
/// </summary>
public string FitupAttachUrl1 { get; set; }
}
/// <summary>
@@ -65,6 +75,8 @@ namespace Model
public DateTime? CreateTime { get; set; }
public string AttachUrl1 { get; set; }
public string Remark { get; set; }
}
@@ -107,6 +119,8 @@ namespace Model
public DateTime? CreateTime { get; set; }
public string AttachUrl1 { get; set; }
public string Remark { get; set; }
}
}
@@ -0,0 +1,15 @@
namespace Model
{
public partial class View_HJGL_WeldJoint
{
/// <summary>
/// 焊前附件路径
/// </summary>
public string PreWeldAttachUrl { get; set; }
/// <summary>
/// 焊后附件路径
/// </summary>
public string PostWeldAttachUrl { get; set; }
}
}