using BLL; using System; using System.Web.Http; namespace WebAPI.Controllers.HJGL.WeldingManage { /// /// 焊前抽检接口 /// public class PreWeldInspectionController : ApiController { /// /// 根据焊口ID获取焊前基础信息 /// /// 焊口ID /// public Model.ResponeData getPreWeldJointByWeldJointId(string WeldJointId) { var responeData = new Model.ResponeData(); try { responeData.data = APIPreWeldInspectionService.GetPreWeldJointByWeldJointId(WeldJointId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } } }