This commit is contained in:
2024-09-27 18:17:21 +08:00
parent be070f85e2
commit 064a849b97
73 changed files with 3248 additions and 589 deletions
@@ -167,6 +167,26 @@ namespace WebAPI.Controllers
return responeData;
}
/// <summary>
/// 根据焊口ID获取焊口详细信息
/// </summary>
/// <param name="WeldJointId"></param>
/// <returns></returns>
public Model.ResponeData getWeldJointByWeldJointId(string WeldJointId)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = APIPipeJointService.GetHJGL_WeldJoint(WeldJointId);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
#endregion
#region 线