新框架PDA后端(祈禧6月初版本)
南骏 池
2025-11-25 770f02888443c1be46549f164abfd3be78a3dbd3
Controllers/QC/IpqcController.cs
@@ -10,7 +10,7 @@
[Route("api/[controller]")]
[ApiController]
public class IpqcController : ControllerBase
public class IpqcController : BaseController
{
    IpqcService m = new IpqcService();
@@ -80,7 +80,7 @@
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var (item, totalCount) = m.getPageXj(queryObj);
            var (item, totalCount) = m.getPageXj(queryObj, RequestInfo);
            var tbBillList =
                resultInfos.tbBillList = item;
            return new ResponseResult
@@ -349,4 +349,25 @@
        }
    }
    [HttpPost("selIpqcItemsByGw")]
    public ResponseResult SelIpqcItemsByGw([FromBody] dynamic query)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.SelIpqcItemsByGw(query);
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}