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; }
}
}