This commit is contained in:
2025-07-23 10:33:41 +08:00
parent 3e28b8025d
commit 24c5dcdf14
6 changed files with 505 additions and 20 deletions
@@ -64,6 +64,47 @@ namespace WebAPI.Controllers
return responeData;
}
/// <summary>
/// 每天夜间同步获取OA系统项目设计图纸数据蓝图寄出信息
/// </summary>
/// <returns></returns>
[HttpPost]
public Model.ResponeData SynOADesignDrawingDataBlueprintInfo()
{
var responeData = new Model.ResponeData();
try
{
responeData.message = IDPDataService.GetDesignDrawingDataBlueprintInfo();
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.ToString();
}
return responeData;
}
/// <summary>
/// 每天夜间同步获取OA系统项目设计图纸数据蓝图打印信息
/// </summary>
/// <returns></returns>
[HttpPost]
public Model.ResponeData SynOADesignDrawingDataPrintInfo()
{
var responeData = new Model.ResponeData();
try
{
responeData.message = IDPDataService.GetDesignDrawingDataPrintInfo();
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.ToString();
}
return responeData;
}
#endregion
#region IDP系统项目开车数据