using System.Dynamic;
|
using Microsoft.AspNetCore.Mvc;
|
using NewPdaSqlServer.Dto.service;
|
using NewPdaSqlServer.entity;
|
using NewPdaSqlServer.service.QC;
|
using NewPdaSqlServer.util;
|
using Newtonsoft.Json.Linq;
|
|
namespace NewPdaSqlServer.Controllers.QC;
|
|
[Route("api/[controller]")]
|
[ApiController]
|
public class OaToMesController : ControllerBase
|
{
|
OaApiService m = new OaApiService();
|
|
[HttpPost("ApproveIqcEx")]
|
public ResponseResult ApproveIqc(dynamic queryObj)
|
{
|
try
|
{
|
return new ResponseResult
|
{
|
status = 0,
|
message = "异常处置单审批接口开发中",
|
data = ""
|
};
|
}
|
catch (Exception ex)
|
{
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
|
|
[HttpPost("RetrunIqcEx")]
|
public ResponseResult APVMes_QC_Exceptional(dynamic queryObj)
|
{
|
try
|
{
|
return new ResponseResult
|
{
|
status = 0,
|
message = "异常处置单退回接口开发中",
|
data = ""
|
};
|
}
|
catch (Exception ex)
|
{
|
return ResponseResult.ResponseError(ex);
|
}
|
}
|
|
}
|