1
sjz
2025-09-16 1ba1f2d588d8a7a8b3d9b5cb94bdf1e18ff7e8c1
Controllers/QC/IpqcController.cs
@@ -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);
        }
    }
}