提交代码

This commit is contained in:
2025-03-10 11:07:50 +08:00
parent 9c4bc2154d
commit edbb8bf3ae
4 changed files with 1113 additions and 0 deletions
@@ -127,6 +127,24 @@ namespace WebAPI.Controllers
}
[HttpGet]
public Model.ResponeData getWorkSectionAndDrawingName(string drawingId)
{
Model.ResponeData respone = new ResponeData();
try
{
return APIQuantityManagementService.getWorkSectionAndDrawingName(drawingId);
}
catch (Exception e)
{
respone.code = 0;
respone.message = e.Message;
}
return respone;
}
[HttpGet]
public Model.ResponeData getProjectContentList(string drawingId, string part)
{